STYLE: suppress warnings for borland
This commit is contained in:
parent
0dc49a840e
commit
b81f09e341
|
@ -34,7 +34,9 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __BORLANDC__
|
#ifdef __BORLANDC__
|
||||||
#pragma warn -8030 /* Temporary used for parameter */
|
# pragma warn -8030 /* Temporary used for parameter */
|
||||||
|
# pragma warn -8027 /* 'for' not inlined. */
|
||||||
|
# pragma warn -8026 /* 'exception' not inlined. */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __ICL
|
#ifdef __ICL
|
||||||
|
|
|
@ -36,6 +36,10 @@
|
||||||
* purpose. It is provided "as is" without express or implied warranty.
|
* purpose. It is provided "as is" without express or implied warranty.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
#ifdef __BORLANDC__
|
||||||
|
# pragma warn -8027 /* 'for' not inlined. */
|
||||||
|
# pragma warn -8026 /* 'exception' not inlined. */
|
||||||
|
#endif
|
||||||
#ifndef @KWSYS_NAMESPACE@_hashtable_hxx
|
#ifndef @KWSYS_NAMESPACE@_hashtable_hxx
|
||||||
#define @KWSYS_NAMESPACE@_hashtable_hxx
|
#define @KWSYS_NAMESPACE@_hashtable_hxx
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,10 @@
|
||||||
=========================================================================*/
|
=========================================================================*/
|
||||||
#include "kwsysPrivate.h"
|
#include "kwsysPrivate.h"
|
||||||
#include KWSYS_HEADER(auto_ptr.hxx)
|
#include KWSYS_HEADER(auto_ptr.hxx)
|
||||||
|
#ifdef __BORLANDC__
|
||||||
|
# pragma warn -8027 /* 'for' not inlined. */
|
||||||
|
# pragma warn -8026 /* exception not inlined. */
|
||||||
|
#endif
|
||||||
// Work-around CMake dependency scanning limitation. This must
|
// Work-around CMake dependency scanning limitation. This must
|
||||||
// duplicate the above list of headers.
|
// duplicate the above list of headers.
|
||||||
#if 0
|
#if 0
|
||||||
|
|
Loading…
Reference in New Issue