Forgot this.

llvm-svn: 90606
This commit is contained in:
Anders Carlsson 2009-12-04 22:34:07 +00:00
parent 1f78b2bf62
commit 1ed86de080
1 changed files with 4 additions and 1 deletions

View File

@ -1263,7 +1263,10 @@ def warn_missing_prototype : Warning<
"no previous prototype for function %0">,
InGroup<DiagGroup<"missing-prototypes">>, DefaultIgnore;
def err_redefinition : Error<"redefinition of %0">;
def err_definition_of_implicitly_declared_member : Error<
"definition of implicitly declared %select{constructor|copy constructor|"
"copy assignment operator|destructor}1">;
def warn_redefinition_of_typedef : Warning<
"redefinition of typedef %0 is invalid in C">,
InGroup<DiagGroup<"typedef-redefinition"> >, DefaultError;