diff options
author | Sebastian Redl <sebastian.redl@getdesigned.at> | 2008-11-04 11:45:54 +0000 |
---|---|---|
committer | Sebastian Redl <sebastian.redl@getdesigned.at> | 2008-11-04 11:45:54 +0000 |
commit | 273ce56d7a4b043ccc6eb5feca1a13879b1d567a (patch) | |
tree | 4e0a85f5c6a6ec4f8845ea97dc4cd77cf0e96413 | |
parent | 9340be464163a778890c5f4187e0d313736454de (diff) | |
download | bcm5719-llvm-273ce56d7a4b043ccc6eb5feca1a13879b1d567a.tar.gz bcm5719-llvm-273ce56d7a4b043ccc6eb5feca1a13879b1d567a.zip |
Trivial style fix.
llvm-svn: 58689
-rw-r--r-- | clang/lib/AST/Expr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/AST/Expr.cpp b/clang/lib/AST/Expr.cpp index 58541af07be..85129b483b4 100644 --- a/clang/lib/AST/Expr.cpp +++ b/clang/lib/AST/Expr.cpp @@ -1074,7 +1074,7 @@ bool Expr::isIntegerConstantExpr(llvm::APSInt &Result, ASTContext &Ctx, bool Expr::isNullPointerConstant(ASTContext &Ctx) const { // Strip off a cast to void*, if it exists. Except in C++. if (const ExplicitCastExpr *CE = dyn_cast<ExplicitCastExpr>(this)) { - if(!Ctx.getLangOptions().CPlusPlus) { + if (!Ctx.getLangOptions().CPlusPlus) { // Check that it is a cast to void*. if (const PointerType *PT = CE->getType()->getAsPointerType()) { QualType Pointee = PT->getPointeeType(); |