diff options
author | Brad King <brad.king@kitware.com> | 2007-10-08 14:05:42 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2007-10-08 14:05:42 (GMT) |
commit | e684c35295325c19e745b16ae120f1099b101381 (patch) | |
tree | ae3d62c03530ca4e8af98baa0e8dee8a53fe02cc | |
parent | 5df777edd7df7da4b4c6b55dac8be92a327e78a1 (diff) | |
download | CMake-e684c35295325c19e745b16ae120f1099b101381.zip CMake-e684c35295325c19e745b16ae120f1099b101381.tar.gz CMake-e684c35295325c19e745b16ae120f1099b101381.tar.bz2 |
STYLE: Fixed line-too-long.
-rw-r--r-- | Source/cmSystemTools.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx index cd05131..52031ea 100644 --- a/Source/cmSystemTools.cxx +++ b/Source/cmSystemTools.cxx @@ -35,7 +35,9 @@ #include <sys/stat.h> -#if defined(_WIN32) && (defined(_MSC_VER) || defined(__WATCOMC__) || defined(__BORLANDC__) || defined(__MINGW32__)) +#if defined(_WIN32) && \ + (defined(_MSC_VER) || defined(__WATCOMC__) || \ + defined(__BORLANDC__) || defined(__MINGW32__)) # include <io.h> #endif |