OSDN Git Service

[Unix] Indent ChangeStd{in,out}ToBinary.
authorFangrui Song <maskray@google.com>
Wed, 16 May 2018 06:43:27 +0000 (06:43 +0000)
committerFangrui Song <maskray@google.com>
Wed, 16 May 2018 06:43:27 +0000 (06:43 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@332432 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Support/Unix/Program.inc

index 4f79199..03599c4 100644 (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