[cmake-commits] king committed cmFileCommand.cxx 1.92 1.93

cmake-commits at cmake.org cmake-commits at cmake.org
Thu Jan 3 09:40:40 EST 2008


Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv1960

Modified Files:
	cmFileCommand.cxx 
Log Message:
STYLE: Fix line-too-long.


Index: cmFileCommand.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmFileCommand.cxx,v
retrieving revision 1.92
retrieving revision 1.93
diff -u -d -r1.92 -r1.93
--- cmFileCommand.cxx	3 Jan 2008 09:19:30 -0000	1.92
+++ cmFileCommand.cxx	3 Jan 2008 14:40:38 -0000	1.93
@@ -233,7 +233,7 @@
   // Open the specified file.
 #if defined(_WIN32) || defined(__CYGWIN__)
   std::ifstream file(fileName.c_str(), std::ios::in | 
-                 (hexOutputArg.IsEnabled() ? std::ios::binary : std::ios::in));
+               (hexOutputArg.IsEnabled() ? std::ios::binary : std::ios::in));
 #else
   std::ifstream file(fileName.c_str(), std::ios::in);
 #endif



More information about the Cmake-commits mailing list