Fix an assertion.

llvm-svn: 118202
This commit is contained in:
Argyrios Kyrtzidis 2010-11-03 22:45:13 +00:00
parent 0747307049
commit ef43990bb8
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ public:
}
ASTUnit &getCurrentASTUnit() const {
assert(!CurrentASTUnit && "No current AST unit!");
assert(CurrentASTUnit && "No current AST unit!");
return *CurrentASTUnit;
}