diff options
author | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2014-06-29 21:06:05 +0200 |
---|---|---|
committer | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2014-07-01 11:17:26 +0200 |
commit | 71c2f17c9b2eef655423f87a71c767f964f478e2 (patch) | |
tree | 1bf2907f8eaf96122b1067ebfae7aaa85d67c1ab | |
parent | c22370a2cbd99ab884aeb248faaf254f9c9ea9b0 (diff) |
Remove warnings_as_errors from rebar.config
rebar's beam files are actually compiled by bootstrap's call to
make:files/2, so warnings_as_errors in rebar.config isn't really used.
-rw-r--r-- | rebar.config | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/rebar.config b/rebar.config index a64f00e..210d193 100644 --- a/rebar.config +++ b/rebar.config @@ -11,8 +11,7 @@ %% type name depending of the OTP version used. {erl_opts, [ - {platform_define, "^[0-9]+", namespaced_types}, - warnings_as_errors + {platform_define, "^[0-9]+", namespaced_types} ]}. {xref_checks, []}. |