diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2009-06-09 19:44:46 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2009-06-09 19:44:46 (GMT) |
commit | 89b431e8ac70041724f1ce8a5d8e3f493847c537 (patch) | |
tree | 6fc9d86cc41626764c3f555812eab1034d307be9 | |
parent | b81f09e341c5bfe1f3ba436f732135b6ad1c19d6 (diff) | |
download | CMake-89b431e8ac70041724f1ce8a5d8e3f493847c537.zip CMake-89b431e8ac70041724f1ce8a5d8e3f493847c537.tar.gz CMake-89b431e8ac70041724f1ce8a5d8e3f493847c537.tar.bz2 |
STYLE: suppress warnings for borland
-rw-r--r-- | Source/kwsys/testAutoPtr.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/kwsys/testAutoPtr.cxx b/Source/kwsys/testAutoPtr.cxx index 2eb0dad..5f2c6e1 100644 --- a/Source/kwsys/testAutoPtr.cxx +++ b/Source/kwsys/testAutoPtr.cxx @@ -11,12 +11,12 @@ PURPOSE. See the above copyright notices for more information. =========================================================================*/ -#include "kwsysPrivate.h" -#include KWSYS_HEADER(auto_ptr.hxx) #ifdef __BORLANDC__ # pragma warn -8027 /* 'for' not inlined. */ # pragma warn -8026 /* exception not inlined. */ #endif +#include "kwsysPrivate.h" +#include KWSYS_HEADER(auto_ptr.hxx) // Work-around CMake dependency scanning limitation. This must // duplicate the above list of headers. #if 0 |