diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-04-16 07:59:39 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-04-16 07:59:39 +0000 |
commit | c9413c745bec9707064211bc5fd02cdfb153c92d (patch) | |
tree | b6d2457c04ea7afb6454b078205c611c94e811a6 /include | |
parent | ffa6c40ecf502281ea171969b42a38c2eef0493f (diff) | |
download | external_llvm-c9413c745bec9707064211bc5fd02cdfb153c92d.zip external_llvm-c9413c745bec9707064211bc5fd02cdfb153c92d.tar.gz external_llvm-c9413c745bec9707064211bc5fd02cdfb153c92d.tar.bz2 |
Revert r154800 which breaks windows builders.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@154802 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Support/Process.h | 4 | ||||
-rw-r--r-- | include/llvm/Support/raw_ostream.h | 5 |
2 files changed, 0 insertions, 9 deletions
diff --git a/include/llvm/Support/Process.h b/include/llvm/Support/Process.h index d796b79..3379922 100644 --- a/include/llvm/Support/Process.h +++ b/include/llvm/Support/Process.h @@ -136,10 +136,6 @@ namespace sys { /// Same as OutputColor, but only enables the bold attribute. static const char *OutputBold(bool bg); - /// This function returns the escape sequence to reverse forground and - /// background colors. - static const char *OutputReverse(); - /// Resets the terminals colors, or returns an escape sequence to do so. static const char *ResetColor(); /// @} diff --git a/include/llvm/Support/raw_ostream.h b/include/llvm/Support/raw_ostream.h index 6c5d478..6bfae5e 100644 --- a/include/llvm/Support/raw_ostream.h +++ b/include/llvm/Support/raw_ostream.h @@ -222,9 +222,6 @@ public: /// outputting colored text, or before program exit. virtual raw_ostream &resetColor() { return *this; } - /// Reverses the forground and background colors. - virtual raw_ostream &reverseColor() { return *this; } - /// This function determines if this stream is connected to a "tty" or /// "console" window. That is, the output would be displayed to the user /// rather than being put on a pipe or stored in a file. @@ -382,8 +379,6 @@ public: bool bg=false); virtual raw_ostream &resetColor(); - virtual raw_ostream &reverseColor(); - virtual bool is_displayed() const; /// has_error - Return the value of the flag in this raw_fd_ostream indicating |