[cfe-commits] r90262 - /cfe/trunk/include/clang/Frontend/CompilerInstance.h
Daniel Dunbar
daniel at zuster.org
Tue Dec 1 13:57:28 PST 2009
Author: ddunbar
Date: Tue Dec 1 15:57:27 2009
New Revision: 90262
URL: http://llvm.org/viewvc/llvm-project?rev=90262&view=rev
Log:
Fix typo.
Modified:
cfe/trunk/include/clang/Frontend/CompilerInstance.h
Modified: cfe/trunk/include/clang/Frontend/CompilerInstance.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Frontend/CompilerInstance.h?rev=90262&r1=90261&r2=90262&view=diff
==============================================================================
--- cfe/trunk/include/clang/Frontend/CompilerInstance.h (original)
+++ cfe/trunk/include/clang/Frontend/CompilerInstance.h Tue Dec 1 15:57:27 2009
@@ -222,7 +222,7 @@
void setDiagnostics(Diagnostic *Value);
DiagnosticClient &getDiagnosticClient() const {
- assert(Target && "Compiler instance has no diagnostic client!");
+ assert(DiagClient && "Compiler instance has no diagnostic client!");
return *DiagClient;
}
More information about the cfe-commits
mailing list