commit | e0919aa890ab5844d8bc01597745411e93f1a2a6 | [log] [tgz] |
---|---|---|
author | Douglas Gregor <doug.gregor@gmail.com> | Thu Jan 28 06:42:08 2010 +0000 |
committer | Douglas Gregor <doug.gregor@gmail.com> | Thu Jan 28 06:42:08 2010 +0000 |
tree | ec0d3fe97d75d1eb383a69876b1b28e715c5863b | |
parent | 6f8a931c18d4806616e01a953779a17049c18341 [diff] |
Add llvm::Program::ChangeStderrToBinary(). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94743 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/System/Unix/Program.inc b/lib/System/Unix/Program.inc index 43c3606..e8c2806 100644 --- a/lib/System/Unix/Program.inc +++ b/lib/System/Unix/Program.inc
@@ -323,4 +323,9 @@ return false; } +bool Program::ChangeStderrToBinary(){ + // Do nothing, as Unix doesn't differentiate between text and binary. + return false; +} + }