summaryrefslogtreecommitdiff
path: root/cpp/include/IceUtil/AbstractMutex.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/include/IceUtil/AbstractMutex.h')
-rw-r--r--cpp/include/IceUtil/AbstractMutex.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/cpp/include/IceUtil/AbstractMutex.h b/cpp/include/IceUtil/AbstractMutex.h
index 84f992e87b5..53d525dc956 100644
--- a/cpp/include/IceUtil/AbstractMutex.h
+++ b/cpp/include/IceUtil/AbstractMutex.h
@@ -13,6 +13,10 @@
#include <IceUtil/Config.h>
#include <IceUtil/Lock.h>
+#ifdef __SUNPRO_CC
+# pragma error_messages(off,hidef)
+#endif
+
namespace IceUtil
{
@@ -112,7 +116,10 @@ public:
{}
};
-
}
+#ifdef __SUNPRO_CC
+# pragma error_messages(default,hidef)
+#endif
+
#endif