diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-08-06 13:20:24 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-10-15 21:16:44 (GMT) |
commit | 2db55ffa56a69c4b55410afb9b40ab20f4025837 (patch) | |
tree | 78a498981c6d77fa0b148db021ca628b2d44a57b /Source/cmDependsJavaParser.cxx | |
parent | a7596fef6e8d6938ce0d7fcba47e896f288b12b4 (diff) | |
download | CMake-2db55ffa56a69c4b55410afb9b40ab20f4025837.zip CMake-2db55ffa56a69c4b55410afb9b40ab20f4025837.tar.gz CMake-2db55ffa56a69c4b55410afb9b40ab20f4025837.tar.bz2 |
Remove borland workarounds.
CMake 3.0 is the last release to require to be able to build with
Borland.
Diffstat (limited to 'Source/cmDependsJavaParser.cxx')
-rw-r--r-- | Source/cmDependsJavaParser.cxx | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Source/cmDependsJavaParser.cxx b/Source/cmDependsJavaParser.cxx index 586c0de..899f4d2 100644 --- a/Source/cmDependsJavaParser.cxx +++ b/Source/cmDependsJavaParser.cxx @@ -336,12 +336,6 @@ static void cmDependsJavaError(yyscan_t yyscanner, const char* message); #define jpStoreClass(str) \ yyGetParser->AddClassFound(str); yyGetParser->DeallocateParserType(&(str)) /* Disable some warnings in the generated code. */ -#ifdef __BORLANDC__ -# pragma warn -8004 /* Variable assigned a value that is not used. */ -# pragma warn -8008 /* condition always returns true */ -# pragma warn -8060 /* possibly incorrect assignment */ -# pragma warn -8066 /* unreachable code */ -#endif #ifdef _MSC_VER # pragma warning (disable: 4102) /* Unused goto label. */ # pragma warning (disable: 4065) /* Switch statement contains default but |