diff options
Diffstat (limited to 'lib/Checker/GRExprEngine.cpp')
-rw-r--r-- | lib/Checker/GRExprEngine.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Checker/GRExprEngine.cpp b/lib/Checker/GRExprEngine.cpp index e01f5d9f03..efe8fbf25c 100644 --- a/lib/Checker/GRExprEngine.cpp +++ b/lib/Checker/GRExprEngine.cpp @@ -1263,8 +1263,8 @@ void GRExprEngine::VisitLValue(const Expr* Ex, ExplodedNode* Pred, // NOTE: Do not use 'isAggregateType()' here as CXXRecordDecls that // are non-pod are not aggregates. - assert ((isa<RecordType>(Ex->getType().getDesugaredType()) || - isa<ArrayType>(Ex->getType().getDesugaredType())) && + assert ((Ex->getType()->isRecordType() || + Ex->getType()->isArrayType()) && "Other kinds of expressions with non-aggregate/union/class types" " do not have lvalues."); |