diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2010-05-12 13:37:42 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2010-05-12 13:37:42 (GMT) |
commit | 0b5288849f5c8a12e31ae38c1f25b69296bc87e9 (patch) | |
tree | b09ced338f542dcb3b937e5e2dfd44e5215efe2a /Source/kwsys/Configure.h.in | |
parent | 38cabcd9ff34dae427ef86b0a24ca4e56cffd746 (diff) | |
download | CMake-0b5288849f5c8a12e31ae38c1f25b69296bc87e9.zip CMake-0b5288849f5c8a12e31ae38c1f25b69296bc87e9.tar.gz CMake-0b5288849f5c8a12e31ae38c1f25b69296bc87e9.tar.bz2 |
Silence warnings on sgi compiler.
Diffstat (limited to 'Source/kwsys/Configure.h.in')
-rw-r--r-- | Source/kwsys/Configure.h.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/kwsys/Configure.h.in b/Source/kwsys/Configure.h.in index 97b2c5d..15986cf 100644 --- a/Source/kwsys/Configure.h.in +++ b/Source/kwsys/Configure.h.in @@ -28,6 +28,10 @@ # if defined(__INTEL_COMPILER) # pragma warning (disable: 1572) /* floating-point equality test */ # endif +# if defined(__sgi) && !defined(__GNUC__) +# pragma set woff 3970 /* pointer to int conversion */ +# pragma set woff 3968 /* 64 bit conversion */ +# endif #endif /* Whether kwsys namespace is "kwsys". */ |