diff options
author | Fangrui Song <maskray@google.com> | 2018-05-16 06:43:27 +0000 |
---|---|---|
committer | Fangrui Song <maskray@google.com> | 2018-05-16 06:43:27 +0000 |
commit | 2cafed76d30c8ac307db5744afeb4337751f3966 (patch) | |
tree | 616ff88190b93cef37f2a4274772d36c66ef987c /llvm/lib/Support/Unix/Program.inc | |
parent | e01131decfa555b4011584ae07209666fa2dbc7f (diff) | |
download | llvm-2cafed76d30c8ac307db5744afeb4337751f3966.zip llvm-2cafed76d30c8ac307db5744afeb4337751f3966.tar.gz llvm-2cafed76d30c8ac307db5744afeb4337751f3966.tar.bz2 |
[Unix] Indent ChangeStd{in,out}ToBinary.
llvm-svn: 332432
Diffstat (limited to 'llvm/lib/Support/Unix/Program.inc')
-rw-r--r-- | llvm/lib/Support/Unix/Program.inc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/Support/Unix/Program.inc b/llvm/lib/Support/Unix/Program.inc index 4f79199..03599c4 100644 --- a/llvm/lib/Support/Unix/Program.inc +++ b/llvm/lib/Support/Unix/Program.inc @@ -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 |