diff options
author | Brad King <brad.king@kitware.com> | 2005-04-22 15:57:59 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2005-04-22 15:57:59 (GMT) |
commit | 49cb763452c9b2dc4f85cd9199507a09d234589e (patch) | |
tree | 5f57f0be0af4a7e40563b753a4a4b614c516d7fb /Source/kwsys/kwsys_stl_string.hxx.in | |
parent | b1e1d9c0fb732833f71b466b3105b7bb877a9010 (diff) | |
download | CMake-49cb763452c9b2dc4f85cd9199507a09d234589e.zip CMake-49cb763452c9b2dc4f85cd9199507a09d234589e.tar.gz CMake-49cb763452c9b2dc4f85cd9199507a09d234589e.tar.bz2 |
COMP: Removed line continuation characters from #if lines to avoid linefeed problems on cygwin.
Diffstat (limited to 'Source/kwsys/kwsys_stl_string.hxx.in')
-rw-r--r-- | Source/kwsys/kwsys_stl_string.hxx.in | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/Source/kwsys/kwsys_stl_string.hxx.in b/Source/kwsys/kwsys_stl_string.hxx.in index 32b22ba..3124c11 100644 --- a/Source/kwsys/kwsys_stl_string.hxx.in +++ b/Source/kwsys/kwsys_stl_string.hxx.in @@ -24,9 +24,7 @@ // to avoid conflicts with other libraries. User code can test for // this definition by checking the macro // @KWSYS_NAMESPACE@_STL_STRING_ISTREAM_DEFINED -#if !@KWSYS_NAMESPACE@_STL_STRING_HAVE_ISTREAM && \ - !defined(@KWSYS_NAMESPACE@_STL_STRING_NO_ISTREAM) && \ - !defined(KWSYS_STL_STRING_ISTREAM_DEFINED) +#if !@KWSYS_NAMESPACE@_STL_STRING_HAVE_ISTREAM && !defined(@KWSYS_NAMESPACE@_STL_STRING_NO_ISTREAM) && !defined(KWSYS_STL_STRING_ISTREAM_DEFINED) # define KWSYS_STL_STRING_ISTREAM_DEFINED # define @KWSYS_NAMESPACE@_STL_STRING_ISTREAM_DEFINED # include <ctype.h> // isspace @@ -83,9 +81,7 @@ operator>>(@KWSYS_NAMESPACE@_ios::istream& is, // to avoid conflicts with other libraries. User code can test for // this definition by checking the macro // @KWSYS_NAMESPACE@_STL_STRING_OSTREAM_DEFINED -#if !@KWSYS_NAMESPACE@_STL_STRING_HAVE_OSTREAM && \ - !defined(@KWSYS_NAMESPACE@_STL_STRING_NO_OSTREAM) && \ - !defined(KWSYS_STL_STRING_OSTREAM_DEFINED) +#if !@KWSYS_NAMESPACE@_STL_STRING_HAVE_OSTREAM && !defined(@KWSYS_NAMESPACE@_STL_STRING_NO_OSTREAM) && !defined(KWSYS_STL_STRING_OSTREAM_DEFINED) # define KWSYS_STL_STRING_OSTREAM_DEFINED # define @KWSYS_NAMESPACE@_STL_STRING_OSTREAM_DEFINED # include <@KWSYS_NAMESPACE@/ios/iostream> @@ -104,9 +100,7 @@ operator<<(@KWSYS_NAMESPACE@_ios::ostream& os, // to avoid conflicts with other libraries. User code can test for // this definition by checking the macro // @KWSYS_NAMESPACE@_STL_STRING_NEQ_CHAR_DEFINED -#if !@KWSYS_NAMESPACE@_STL_STRING_HAVE_NEQ_CHAR && \ - !defined(@KWSYS_NAMESPACE@_STL_STRING_NO_NEQ_CHAR) && \ - !defined(KWSYS_STL_STRING_NEQ_CHAR_DEFINED) +#if !@KWSYS_NAMESPACE@_STL_STRING_HAVE_NEQ_CHAR && !defined(@KWSYS_NAMESPACE@_STL_STRING_NO_NEQ_CHAR) && !defined(KWSYS_STL_STRING_NEQ_CHAR_DEFINED) # define KWSYS_STL_STRING_NEQ_CHAR_DEFINED # define @KWSYS_NAMESPACE@_STL_STRING_NEQ_CHAR_DEFINED inline bool operator!=(@KWSYS_NAMESPACE@_stl::string const& s, const char* c) |