mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 21:31:08 -06:00
STYLE: Fix line-too-long.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user