summaryrefslogtreecommitdiffstats
path: root/include/clang/Basic/DiagnosticLexKinds.td
diff options
context:
space:
mode:
authorBen Langmuir <blangmuir@apple.com>2014-03-10 22:34:23 +0000
committerBen Langmuir <blangmuir@apple.com>2014-03-10 22:34:23 +0000
commit22ee0a5ea39c9b3442d04e3e6df7065111a606c1 (patch)
tree10e21d466c3098b661c0f79dc9f8328c9faec4ed /include/clang/Basic/DiagnosticLexKinds.td
parent82ff42d42a852633ccad86b23c01c573358699ff (diff)
Turn on the uncovered umbrella header warning by default
This warning (under -Wincomplete-umbrella) diagnoses cases that are difficult to understand without the compiler's help, since the symptom is likely to be that you are missing the contents of headers that are mistakenly omitted from a module. This seems like a good thing to have on by default (with the usual caveat for -Wsystem-headers). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@203506 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/DiagnosticLexKinds.td')
-rw-r--r--include/clang/Basic/DiagnosticLexKinds.td2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Basic/DiagnosticLexKinds.td b/include/clang/Basic/DiagnosticLexKinds.td
index 16ac94f3d1..183074340f 100644
--- a/include/clang/Basic/DiagnosticLexKinds.td
+++ b/include/clang/Basic/DiagnosticLexKinds.td
@@ -606,7 +606,7 @@ def warn_auto_module_import : Warning<
"import of module '%1'">, InGroup<AutoImport>, DefaultIgnore;
def warn_uncovered_module_header : Warning<
"umbrella header for module '%0' does not include header '%1'">,
- InGroup<IncompleteUmbrella>, DefaultIgnore;
+ InGroup<IncompleteUmbrella>;
def warn_forgotten_module_header : Warning<
"header '%0' is included in module '%1' but not listed in module map">,
InGroup<IncompleteModule>, DefaultIgnore;