diff --git a/src/jsx.erl b/src/jsx.erl index 0f54758..203175d 100644 --- a/src/jsx.erl +++ b/src/jsx.erl @@ -33,7 +33,7 @@ -export([format/1, format/2]). --include("./include/jsx_common.hrl"). +-include("jsx_common.hrl"). -ifdef(TEST). diff --git a/src/jsx_eep0018.erl b/src/jsx_eep0018.erl index e2b6e93..ee56d71 100644 --- a/src/jsx_eep0018.erl +++ b/src/jsx_eep0018.erl @@ -28,7 +28,7 @@ -export([json_to_term/2, term_to_json/2]). --include("./include/jsx_common.hrl"). +-include("jsx_common.hrl"). -ifdef(TEST). -include_lib("eunit/include/eunit.hrl"). diff --git a/src/jsx_format.erl b/src/jsx_format.erl index d20cf1b..170d4e9 100644 --- a/src/jsx_format.erl +++ b/src/jsx_format.erl @@ -28,8 +28,8 @@ -export([format/2]). --include("./include/jsx_common.hrl"). --include("./include/jsx_format.hrl"). +-include("jsx_common.hrl"). +-include("jsx_format.hrl"). -ifdef(TEST). diff --git a/src/jsx_utf16.erl b/src/jsx_utf16.erl index 7c84293..bb6c87f 100644 --- a/src/jsx_utf16.erl +++ b/src/jsx_utf16.erl @@ -26,8 +26,8 @@ -define(utf16, true). --include("./include/jsx_common.hrl"). --include("./include/jsx_decoder.hrl"). +-include("jsx_common.hrl"). +-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 diff --git a/src/jsx_utf16le.erl b/src/jsx_utf16le.erl index 2133c86..db5606d 100644 --- a/src/jsx_utf16le.erl +++ b/src/jsx_utf16le.erl @@ -26,8 +26,8 @@ -define(utf16le, true). --include("./include/jsx_common.hrl"). --include("./include/jsx_decoder.hrl"). +-include("jsx_common.hrl"). +-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 diff --git a/src/jsx_utf32.erl b/src/jsx_utf32.erl index 87c7337..a7e7d98 100644 --- a/src/jsx_utf32.erl +++ b/src/jsx_utf32.erl @@ -26,8 +26,8 @@ -define(utf32, true). --include("./include/jsx_common.hrl"). --include("./include/jsx_decoder.hrl"). +-include("jsx_common.hrl"). +-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 diff --git a/src/jsx_utf32le.erl b/src/jsx_utf32le.erl index fd85926..ba76a32 100644 --- a/src/jsx_utf32le.erl +++ b/src/jsx_utf32le.erl @@ -26,8 +26,8 @@ -define(utf32le, true). --include("./include/jsx_common.hrl"). --include("./include/jsx_decoder.hrl"). +-include("jsx_common.hrl"). +-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 diff --git a/src/jsx_utf8.erl b/src/jsx_utf8.erl index dbe844f..53b48fe 100644 --- a/src/jsx_utf8.erl +++ b/src/jsx_utf8.erl @@ -26,8 +26,8 @@ -define(utf8, true). --include("./include/jsx_common.hrl"). --include("./include/jsx_decoder.hrl"). +-include("jsx_common.hrl"). +-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 diff --git a/src/jsx_verify.erl b/src/jsx_verify.erl index dd8daa0..6979329 100644 --- a/src/jsx_verify.erl +++ b/src/jsx_verify.erl @@ -28,7 +28,7 @@ -export([is_json/2]). --include("./include/jsx_common.hrl"). +-include("jsx_common.hrl"). -ifdef(TEST).