diff options
author | Chris Lattner <sabre@nondot.org> | 2009-04-15 22:32:37 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-04-15 22:32:37 +0000 |
commit | 7171825a5f55ce7439d4dfaaa32a7c0d51a7cba7 (patch) | |
tree | e760b5227b1388cfc8f1a3a9e59255610ff09c95 | |
parent | cb2ca73c1d7e76cc1358ce51457d2d5837d84f9b (diff) |
comment out IsGroup: tblgen isn't instantiating these dependent defs quite right yet.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69234 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Basic/Diagnostic.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Basic/Diagnostic.td b/include/clang/Basic/Diagnostic.td index fdb8c06b99..e842c5330d 100644 --- a/include/clang/Basic/Diagnostic.td +++ b/include/clang/Basic/Diagnostic.td @@ -29,7 +29,7 @@ def CLASS_ERROR : DiagClass; // Diagnostic Groups. class DiagGroup<string Name> { string GroupName = Name; } class InGroup<DiagGroup G> { DiagGroup Group = G; } -class IsGroup<string Name> { DiagGroup Group = DiagGroup<Name>; } +//class IsGroup<string Name> { DiagGroup Group = DiagGroup<Name>; } def ImplicitFunctionDeclare : DiagGroup<"implicit-function-declaration">; def Trigraphs : DiagGroup<"trigraphs">; |