COMP: Disabling warning in generated code.

This commit is contained in:
Brad King 2005-02-01 11:28:38 -05:00
parent 289c74541a
commit c98687ed9e
2 changed files with 2 additions and 0 deletions

View File

@ -192,6 +192,7 @@ static void cmDependsFortranError(yyscan_t yyscanner, const char* message)
#endif
#ifdef _MSC_VER
# pragma warning (disable: 4102) /* Unused goto label. */
# pragma warning (disable: 4065) /* Switch contains default but no case. */
#endif

View File

@ -66,6 +66,7 @@ static void cmDependsFortranError(yyscan_t yyscanner, const char* message)
#endif
#ifdef _MSC_VER
# pragma warning (disable: 4102) /* Unused goto label. */
# pragma warning (disable: 4065) /* Switch contains default but no case. */
#endif
%}