Browse Source

Don't enable binary optimization warnings by default.

It's problematic: both doing it right and doing it wrong trigger a warning
and we treat warnings as errors.
Loïc Hoguin 14 years ago
parent
commit
aab91c044b
1 changed files with 5 additions and 1 deletions
  1. 5 1
      rebar.config

+ 5 - 1
rebar.config

@@ -5,4 +5,8 @@
 	unmatched_returns
 %%	underspecs
 ]}]}.
-{erl_opts, [bin_opt_info, warnings_as_errors, warn_export_all]}.
+{erl_opts, [
+%%	bin_opt_info,
+	warnings_as_errors,
+	warn_export_all
+]}.