Преглед на файлове

STYLE: Fix line-too-long.

Brad King преди 18 години
родител
ревизия
c61a3b6fe9
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      Source/cmFileCommand.cxx

+ 1 - 1
Source/cmFileCommand.cxx

@@ -233,7 +233,7 @@ bool cmFileCommand::HandleReadCommand(std::vector<std::string> const& args)
   // 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