[cfe-commits] r41734 - in /cfe/trunk: Driver/TextDiagnosticPrinter.cpp include/clang/Basic/Diagnostic.h
Chris Lattner
sabre at nondot.org
Wed Sep 5 17:14:11 PDT 2007
Author: lattner
Date: Wed Sep 5 19:14:09 2007
New Revision: 41734
URL: http://llvm.org/viewvc/llvm-project?rev=41734&view=rev
Log:
remove sorry.
Modified:
cfe/trunk/Driver/TextDiagnosticPrinter.cpp
cfe/trunk/include/clang/Basic/Diagnostic.h
Modified: cfe/trunk/Driver/TextDiagnosticPrinter.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/Driver/TextDiagnosticPrinter.cpp?rev=41734&r1=41733&r2=41734&view=diff
==============================================================================
--- cfe/trunk/Driver/TextDiagnosticPrinter.cpp (original)
+++ cfe/trunk/Driver/TextDiagnosticPrinter.cpp Wed Sep 5 19:14:09 2007
@@ -165,7 +165,6 @@
case Diagnostic::Warning: std::cerr << "warning: "; break;
case Diagnostic::Error: std::cerr << "error: "; break;
case Diagnostic::Fatal: std::cerr << "fatal error: "; break;
- case Diagnostic::Sorry: std::cerr << "sorry, unimplemented: ";
break;
}
Modified: cfe/trunk/include/clang/Basic/Diagnostic.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/Diagnostic.h?rev=41734&r1=41733&r2=41734&view=diff
==============================================================================
--- cfe/trunk/include/clang/Basic/Diagnostic.h (original)
+++ cfe/trunk/include/clang/Basic/Diagnostic.h Wed Sep 5 19:14:09 2007
@@ -116,7 +116,7 @@
/// Level - The level of the diagnostic
enum Level {
- Ignored, Note, Warning, Error, Fatal, Sorry
+ Ignored, Note, Warning, Error, Fatal
};
/// isNoteWarningOrExtension - Return true if the unmapped diagnostic level of
More information about the cfe-commits
mailing list