moves headers back to include dir so include_lib works. except jsx_format.hrl, because jsx_format needs a full rewrite
This commit is contained in:
parent
6d6d61a817
commit
6234e4a986
12 changed files with 15 additions and 15 deletions
|
@ -34,7 +34,7 @@
|
|||
-export([format/1, format/2]).
|
||||
|
||||
|
||||
-include("jsx_common.hrl").
|
||||
-include("../include/jsx_common.hrl").
|
||||
|
||||
|
||||
-spec parser() -> jsx_decoder().
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
-module(jsx_encoder).
|
||||
|
||||
|
||||
-include("jsx_common.hrl").
|
||||
-include("../include/jsx_common.hrl").
|
||||
|
||||
|
||||
-export([start/3,
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
-export([format/2]).
|
||||
|
||||
|
||||
-include("jsx_common.hrl").
|
||||
-include("../include/jsx_common.hrl").
|
||||
-include("jsx_format.hrl").
|
||||
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
|
||||
-export([json_to_term/2, term_to_json/2]).
|
||||
|
||||
-include("jsx_common.hrl").
|
||||
-include("../include/jsx_common.hrl").
|
||||
|
||||
|
||||
-record(decoder_opts, {
|
||||
|
|
|
@ -26,8 +26,8 @@
|
|||
|
||||
-define(utf16, true).
|
||||
|
||||
-include("jsx_common.hrl").
|
||||
-include("jsx_decoder.hrl").
|
||||
-include("../include/jsx_common.hrl").
|
||||
-include("../include/jsx_decoder.hrl").
|
||||
|
||||
%% i've noticed you've noticed that there's no source here. very astute. see
|
||||
%% jsx_decoder_template.hrl in the include directory. any mofications to this
|
||||
|
|
|
@ -26,8 +26,8 @@
|
|||
|
||||
-define(utf16le, true).
|
||||
|
||||
-include("jsx_common.hrl").
|
||||
-include("jsx_decoder.hrl").
|
||||
-include("../include/jsx_common.hrl").
|
||||
-include("../include/jsx_decoder.hrl").
|
||||
|
||||
%% i've noticed you've noticed that there's no source here. very astute. see
|
||||
%% jsx_decoder_template.hrl in the include directory. any mofications to this
|
||||
|
|
|
@ -26,8 +26,8 @@
|
|||
|
||||
-define(utf32, true).
|
||||
|
||||
-include("jsx_common.hrl").
|
||||
-include("jsx_decoder.hrl").
|
||||
-include("../include/jsx_common.hrl").
|
||||
-include("../include/jsx_decoder.hrl").
|
||||
|
||||
%% i've noticed you've noticed that there's no source here. very astute. see
|
||||
%% jsx_decoder_template.hrl in the include directory. any mofications to this
|
||||
|
|
|
@ -26,8 +26,8 @@
|
|||
|
||||
-define(utf32le, true).
|
||||
|
||||
-include("jsx_common.hrl").
|
||||
-include("jsx_decoder.hrl").
|
||||
-include("../include/jsx_common.hrl").
|
||||
-include("../include/jsx_decoder.hrl").
|
||||
|
||||
%% i've noticed you've noticed that there's no source here. very astute. see
|
||||
%% jsx_decoder_template.hrl in the include directory. any mofications to this
|
||||
|
|
|
@ -26,8 +26,8 @@
|
|||
|
||||
-define(utf8, true).
|
||||
|
||||
-include("jsx_common.hrl").
|
||||
-include("jsx_decoder.hrl").
|
||||
-include("../include/jsx_common.hrl").
|
||||
-include("../include/jsx_decoder.hrl").
|
||||
|
||||
%% i've noticed you've noticed that there's no source here. very astute. see
|
||||
%% jsx_decoder_template.hrl in the include directory. any mofications to this
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
|
||||
-export([is_json/2]).
|
||||
|
||||
-include("jsx_common.hrl").
|
||||
-include("../include/jsx_common.hrl").
|
||||
|
||||
|
||||
-record(verify_opts, {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue