diff options
author | Björn Gustavsson <[email protected]> | 2016-12-02 12:59:33 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2016-12-02 12:59:33 +0100 |
commit | d54c12c305425f6126e0fab0b024560df72efb27 (patch) | |
tree | 3af7942ab96fc8c9713554ba9eadf8ec658a2dc9 /lib/stdlib/src/erl_lint.erl | |
parent | 27608cfe95d155e56b0cc7503bf910e9b23cd225 (diff) | |
parent | 13838af02bc54db57264c4f198bc819809d65481 (diff) | |
download | otp-d54c12c305425f6126e0fab0b024560df72efb27.tar.gz otp-d54c12c305425f6126e0fab0b024560df72efb27.tar.bz2 otp-d54c12c305425f6126e0fab0b024560df72efb27.zip |
Merge branch 'richcarl/default-compiler-flags/PR-1226/OTP-14071'
* richcarl/default-compiler-flags/PR-1226/OTP-14071:
stdlib test suite: fix uses of export_all
diameter tests: Eliminate use of -compile(export_all)
asn1 test suite: Suppress warnings for -compile(export_all)
Remove left-over uses of -compile(export_all)
Make warn_export_all the default
warn_obsolete_guard is already default
Diffstat (limited to 'lib/stdlib/src/erl_lint.erl')
-rw-r--r-- | lib/stdlib/src/erl_lint.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/src/erl_lint.erl b/lib/stdlib/src/erl_lint.erl index 49b65069b7..1b84234fac 100644 --- a/lib/stdlib/src/erl_lint.erl +++ b/lib/stdlib/src/erl_lint.erl @@ -526,7 +526,7 @@ start(File, Opts) -> true, Opts)}, {export_all, bool_option(warn_export_all, nowarn_export_all, - false, Opts)}, + true, Opts)}, {export_vars, bool_option(warn_export_vars, nowarn_export_vars, false, Opts)}, |