summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalUnixMakefileGenerator2.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2005-05-03 18:58:13 (GMT)
committerBrad King <brad.king@kitware.com>2005-05-03 18:58:13 (GMT)
commitbac564356b52b6ef1782615ad704d07bd7b8edd6 (patch)
tree5f707f502e4b8e3a522afb8c95d491ca420b7ba3 /Source/cmLocalUnixMakefileGenerator2.h
parentc7a75e92c992c9750f677177f550a32da6725ff8 (diff)
downloadCMake-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/cmLocalUnixMakefileGenerator2.h')
-rw-r--r--Source/cmLocalUnixMakefileGenerator2.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator2.h b/Source/cmLocalUnixMakefileGenerator2.h
index 65f03b0..61ea950 100644
--- a/Source/cmLocalUnixMakefileGenerator2.h
+++ b/Source/cmLocalUnixMakefileGenerator2.h
@@ -19,6 +19,10 @@
#include "cmLocalGenerator.h"
+#if defined(__sgi) && !defined(__GNUC__)
+# pragma set woff 1375 /* base class destructor not virtual */
+#endif
+
class cmCustomCommand;
class cmDependInformation;
class cmDepends;
@@ -278,4 +282,8 @@ private:
std::set<cmStdString> m_ObjectFiles;
};
+#if defined(__sgi) && !defined(__GNUC__)
+# pragma reset woff 1375 /* base class destructor not virtual */
+#endif
+
#endif