From a8fbe9a2faa8990db86052edffd696d9d0c852d6 Mon Sep 17 00:00:00 2001 From: Brad King Date: Tue, 25 Jan 2022 04:42:12 -0500 Subject: LexerParser: Suppress LCC warnings in generated code --- Source/cmStandardLexer.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/cmStandardLexer.h b/Source/cmStandardLexer.h index 417f14d..2722528 100644 --- a/Source/cmStandardLexer.h +++ b/Source/cmStandardLexer.h @@ -50,6 +50,10 @@ # endif #endif +#if defined(__LCC__) +# pragma diag_suppress 1873 /* comparison between signed and unsigned */ +#endif + #if defined(__NVCOMPILER) # pragma diag_suppress 111 /* statement is unreachable */ # pragma diag_suppress 550 /* variable set but never used */ -- cgit v0.12