Skip to content
Snippets Groups Projects
Commit 333d772d authored by sof's avatar sof
Browse files

[project @ 1997-11-25 13:55:30 by sof]

Added -fwarn-duplicate-exports option
parent a9f74b1c
No related merge requests found
......@@ -93,6 +93,7 @@ module CmdLineOpts (
opt_WarnUnusedNames,
opt_WarnIncompletePatterns, opt_WarnOverlappedPatterns,
opt_WarnMissingMethods,
opt_WarnDuplicateExports,
opt_PruneTyDecls, opt_PruneInstDecls,
opt_D_show_unused_imports,
opt_D_show_rn_stats,
......@@ -351,6 +352,7 @@ opt_WarnIncompletePatterns = lookUp SLIT("-fwarn-incomplete-patterns")
opt_WarnOverlappedPatterns = lookUp SLIT("-fwarn-overlapped-patterns")
opt_WarnUnusedNames = lookUp SLIT("-fwarn-unused-names")
opt_WarnMissingMethods = lookUp SLIT("-fwarn-missing-methods")
opt_WarnDuplicateExports = lookUp SLIT("-fwarn-duplicate-exports")
opt_PruneTyDecls = not (lookUp SLIT("-fno-prune-tydecls"))
opt_PruneInstDecls = not (lookUp SLIT("-fno-prune-instdecls"))
opt_D_show_unused_imports = lookUp SLIT("-dshow-unused-imports")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment