[llvm-commits] [llvm] r72858 - in /llvm/trunk: include/llvm/System/Process.h lib/System/Win32/Process.inc
Torok Edwin
edwintorok at gmail.com
Thu Jun 4 01:18:25 PDT 2009
Author: edwin
Date: Thu Jun 4 03:18:25 2009
New Revision: 72858
URL: http://llvm.org/viewvc/llvm-project?rev=72858&view=rev
Log:
Fix comments.
Modified:
llvm/trunk/include/llvm/System/Process.h
llvm/trunk/lib/System/Win32/Process.inc
Modified: llvm/trunk/include/llvm/System/Process.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/System/Process.h?rev=72858&r1=72857&r2=72858&view=diff
==============================================================================
--- llvm/trunk/include/llvm/System/Process.h (original)
+++ llvm/trunk/include/llvm/System/Process.h Thu Jun 4 03:18:25 2009
@@ -123,8 +123,7 @@
/// changing colors.
static bool ColorNeedsFlush();
- /// This function returns the colorcode escape sequences, and sets Len to
- /// the length of the escape sequence.
+ /// This function returns the colorcode escape sequences.
/// If ColorNeedsFlush() is true then this function will change the colors
/// and return an empty escape sequence. In that case it is the
/// responsibility of the client to flush the output stream prior to
Modified: llvm/trunk/lib/System/Win32/Process.inc
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/System/Win32/Process.inc?rev=72858&r1=72857&r2=72858&view=diff
==============================================================================
--- llvm/trunk/lib/System/Win32/Process.inc (original)
+++ llvm/trunk/lib/System/Win32/Process.inc Thu Jun 4 03:18:25 2009
@@ -147,7 +147,7 @@
return Columns;
}
-// it always has colors
+// It always has colors.
bool Process::StandardErrHasColors() {
return StandardErrIsDisplayed();
}
@@ -155,6 +155,7 @@
bool Process::StandardOutHasColors() {
return StandardOutIsDisplayed();
}
+
namespace {
class DefaultColors
{
More information about the llvm-commits
mailing list