clang-format of ChangeStdinToBinary & ChangeStdoutToBinary.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@218547 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Yaron Keren 2014-09-26 22:27:11 +00:00
parent 7118c73867
commit a51dbbd394

View File

@ -428,15 +428,15 @@ ProcessInfo sys::Wait(const ProcessInfo &PI, unsigned SecondsToWait,
return WaitResult; return WaitResult;
} }
std::error_code sys::ChangeStdinToBinary(){ std::error_code sys::ChangeStdinToBinary() {
int result = _setmode( _fileno(stdin), _O_BINARY ); int result = _setmode(_fileno(stdin), _O_BINARY);
if (result == -1) if (result == -1)
return std::error_code(errno, std::generic_category()); return std::error_code(errno, std::generic_category());
return std::error_code(); return std::error_code();
} }
std::error_code sys::ChangeStdoutToBinary(){ std::error_code sys::ChangeStdoutToBinary() {
int result = _setmode( _fileno(stdout), _O_BINARY ); int result = _setmode(_fileno(stdout), _O_BINARY);
if (result == -1) if (result == -1)
return std::error_code(errno, std::generic_category()); return std::error_code(errno, std::generic_category());
return std::error_code(); return std::error_code();