[Unix] Indent ChangeStd{in,out}ToBinary.

llvm-svn: 332432
This commit is contained in:
Fangrui Song 2018-05-16 06:43:27 +00:00
parent 1ffcacf65a
commit 4ed9eefa60

View File

@ -404,14 +404,14 @@ ProcessInfo sys::Wait(const ProcessInfo &PI, unsigned SecondsToWait,
return WaitResult;
}
std::error_code sys::ChangeStdinToBinary(){
std::error_code sys::ChangeStdinToBinary() {
// Do nothing, as Unix doesn't differentiate between text and binary.
return std::error_code();
return std::error_code();
}
std::error_code sys::ChangeStdoutToBinary(){
std::error_code sys::ChangeStdoutToBinary() {
// Do nothing, as Unix doesn't differentiate between text and binary.
return std::error_code();
return std::error_code();
}
std::error_code