STYLE: Fix line-too-long.

This commit is contained in:
Brad King 2008-01-03 09:40:38 -05:00
parent 45a4ddd85c
commit c61a3b6fe9
1 changed files with 1 additions and 1 deletions

View File

@ -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