Deleted Added
full compact
DiagnosticParseKinds.td (200583) DiagnosticParseKinds.td (201361)
1//==--- DiagnosticParseKinds.td - libparse diagnostics --------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 215 unchanged lines hidden (view full) ---

224def err_expected_lparen_after_type : Error<
225 "expected '(' for function-style cast or type construction">;
226def err_expected_equal_after_declarator : Error<
227 "expected '=' after declarator">;
228def warn_parens_disambiguated_as_function_decl : Warning<
229 "parentheses were disambiguated as a function declarator">;
230def err_expected_member_or_base_name : Error<
231 "expected class member or base class name">;
1//==--- DiagnosticParseKinds.td - libparse diagnostics --------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 215 unchanged lines hidden (view full) ---

224def err_expected_lparen_after_type : Error<
225 "expected '(' for function-style cast or type construction">;
226def err_expected_equal_after_declarator : Error<
227 "expected '=' after declarator">;
228def warn_parens_disambiguated_as_function_decl : Warning<
229 "parentheses were disambiguated as a function declarator">;
230def err_expected_member_or_base_name : Error<
231 "expected class member or base class name">;
232def err_expected_lbrace_after_base_specifiers : Error<
233 "expected '{' after base class list">;
232def ext_ellipsis_exception_spec : Extension<
233 "exception specification of '...' is a Microsoft extension">;
234def err_expected_catch : Error<"expected catch">;
235def err_expected_lbrace_or_comma : Error<"expected '{' or ','">;
236def err_using_namespace_in_class : Error<
237 "'using namespace' is not allowed in classes">;
238def err_ident_in_pseudo_dtor_not_a_type : Error<
239 "identifier %0 in pseudo-destructor expression does not name a type">;

--- 95 unchanged lines hidden ---
234def ext_ellipsis_exception_spec : Extension<
235 "exception specification of '...' is a Microsoft extension">;
236def err_expected_catch : Error<"expected catch">;
237def err_expected_lbrace_or_comma : Error<"expected '{' or ','">;
238def err_using_namespace_in_class : Error<
239 "'using namespace' is not allowed in classes">;
240def err_ident_in_pseudo_dtor_not_a_type : Error<
241 "identifier %0 in pseudo-destructor expression does not name a type">;

--- 95 unchanged lines hidden ---