diff options
author | Brad King <brad.king@kitware.com> | 2005-05-03 18:58:13 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2005-05-03 18:58:13 (GMT) |
commit | bac564356b52b6ef1782615ad704d07bd7b8edd6 (patch) | |
tree | 5f707f502e4b8e3a522afb8c95d491ca420b7ba3 /Source/cmStandardIncludes.h | |
parent | c7a75e92c992c9750f677177f550a32da6725ff8 (diff) | |
download | CMake-bac564356b52b6ef1782615ad704d07bd7b8edd6.zip CMake-bac564356b52b6ef1782615ad704d07bd7b8edd6.tar.gz CMake-bac564356b52b6ef1782615ad704d07bd7b8edd6.tar.bz2 |
COMP: Added pragma directives for SGI compilers to avoid useless warnings.
Diffstat (limited to 'Source/cmStandardIncludes.h')
-rw-r--r-- | Source/cmStandardIncludes.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Source/cmStandardIncludes.h b/Source/cmStandardIncludes.h index f218455..52eff2a 100644 --- a/Source/cmStandardIncludes.h +++ b/Source/cmStandardIncludes.h @@ -181,6 +181,10 @@ inline bool operator==(std::string const& a, const char* b) { return (a==std::string(b)); } # endif // end CM_SGI_CC_720 +#if defined(__sgi) && !defined(__GNUC__) +# pragma set woff 1375 /* base class destructor not virtual */ +#endif + // use this class to shrink the size of symbols in .o files // std::string is really basic_string<....lots of stuff....> // when combined with a map or set, the symbols can be > 2000 chars! @@ -306,4 +310,8 @@ public: typedef Superclass::const_iterator const_iterator; }; +#if defined(__sgi) && !defined(__GNUC__) +# pragma reset woff 1375 /* base class destructor not virtual */ +#endif + #endif |