From: Richard Trieu Date: Thu, 11 Jul 2019 02:54:15 +0000 (+0000) Subject: Increase the number of parser diagnostics. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bceaa382bc4cb23de0c2edcb8a59ce82859d7167;p=clang Increase the number of parser diagnostics. The reserved range for parser diagnostics is getting close to being filled, so increase the space for them. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@365727 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Basic/DiagnosticIDs.h b/include/clang/Basic/DiagnosticIDs.h index 8ee9a970b1..fccd534be3 100644 --- a/include/clang/Basic/DiagnosticIDs.h +++ b/include/clang/Basic/DiagnosticIDs.h @@ -32,7 +32,7 @@ namespace clang { DIAG_SIZE_FRONTEND = 150, DIAG_SIZE_SERIALIZATION = 120, DIAG_SIZE_LEX = 400, - DIAG_SIZE_PARSE = 500, + DIAG_SIZE_PARSE = 600, DIAG_SIZE_AST = 200, DIAG_SIZE_COMMENT = 100, DIAG_SIZE_CROSSTU = 100,