Silence warnings on sgi compiler.
This commit is contained in:
parent
f8593092ae
commit
f88a0a3514
|
@ -28,6 +28,10 @@
|
||||||
# if defined(__INTEL_COMPILER)
|
# if defined(__INTEL_COMPILER)
|
||||||
# pragma warning (disable: 1572) /* floating-point equality test */
|
# pragma warning (disable: 1572) /* floating-point equality test */
|
||||||
# endif
|
# endif
|
||||||
|
# if defined(__sgi) && !defined(__GNUC__)
|
||||||
|
# pragma set woff 3970 /* pointer to int conversion */
|
||||||
|
# pragma set woff 3968 /* 64 bit conversion */
|
||||||
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Whether kwsys namespace is "kwsys". */
|
/* Whether kwsys namespace is "kwsys". */
|
||||||
|
|
|
@ -38,6 +38,7 @@
|
||||||
# pragma warn -8027 /* 'for' not inlined. */
|
# pragma warn -8027 /* 'for' not inlined. */
|
||||||
# pragma warn -8026 /* 'exception' not inlined. */
|
# pragma warn -8026 /* 'exception' not inlined. */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef @KWSYS_NAMESPACE@_hashtable_hxx
|
#ifndef @KWSYS_NAMESPACE@_hashtable_hxx
|
||||||
#define @KWSYS_NAMESPACE@_hashtable_hxx
|
#define @KWSYS_NAMESPACE@_hashtable_hxx
|
||||||
|
|
||||||
|
@ -57,6 +58,9 @@
|
||||||
# pragma warning (disable:4786)
|
# pragma warning (disable:4786)
|
||||||
# pragma warning (disable:4512) /* no assignment operator for class */
|
# pragma warning (disable:4512) /* no assignment operator for class */
|
||||||
#endif
|
#endif
|
||||||
|
#if defined(__sgi) && !defined(__GNUC__)
|
||||||
|
# pragma set woff 3970 /* pointer to int conversion */ 3321 3968
|
||||||
|
#endif
|
||||||
|
|
||||||
#if @KWSYS_NAMESPACE@_STL_HAS_ALLOCATOR_TEMPLATE
|
#if @KWSYS_NAMESPACE@_STL_HAS_ALLOCATOR_TEMPLATE
|
||||||
# define @KWSYS_NAMESPACE@_HASH_DEFAULT_ALLOCATOR(T) @KWSYS_NAMESPACE@_stl::allocator< T >
|
# define @KWSYS_NAMESPACE@_HASH_DEFAULT_ALLOCATOR(T) @KWSYS_NAMESPACE@_stl::allocator< T >
|
||||||
|
|
Loading…
Reference in New Issue