diff options
author | Douglas Gregor <dgregor@apple.com> | 2011-12-06 17:16:41 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2011-12-06 17:16:41 +0000 |
commit | d620a84a01cc232a9449dbcc2c40bd43ca314fc9 (patch) | |
tree | 70e764de47eb9f6e1545baef4ff4257692b3be21 /include | |
parent | 8075ce62f7860224d7f3f9ddba38201ad89e2cbc (diff) |
Implement modules support for subframeworks (aka embedded
frameworks). A submodule can now be labeled as a "framework", and
header search will look into the appropriate Headers/PrivateHeaders
subdirectories for named headers.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@145941 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/clang/Basic/DiagnosticLexKinds.td | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/clang/Basic/DiagnosticLexKinds.td b/include/clang/Basic/DiagnosticLexKinds.td index 286a7ef40e..e0bf38c102 100644 --- a/include/clang/Basic/DiagnosticLexKinds.td +++ b/include/clang/Basic/DiagnosticLexKinds.td @@ -395,8 +395,6 @@ def err_mmap_header_not_found : Error< "%select{|umbrella }0header '%1' not found">; def err_mmap_umbrella_header_conflict : Error< "module '%0' already has an umbrella header ('%1')">; -def err_mmap_umbrella_header_submodule : Error< - "submodule '%0' can not have an umbrella header">; def err_mmap_umbrella_clash : Error< "umbrella header for module '%0' already covers this directory">; def err_mmap_export_module_id : Error< |