diff options
Diffstat (limited to 'clang/lib')
-rw-r--r-- | clang/lib/AST/Expr.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/lib/AST/Expr.cpp b/clang/lib/AST/Expr.cpp index f000ff63d0b..ec44584585c 100644 --- a/clang/lib/AST/Expr.cpp +++ b/clang/lib/AST/Expr.cpp @@ -550,6 +550,9 @@ bool Expr::isUnusedResultAWarning(SourceLocation &Loc, SourceRange &R1, R1 = SourceRange(KVCRef->getLocation(), KVCRef->getLocation()); if (KVCRef->getBase()) R2 = KVCRef->getBase()->getSourceRange(); +#else + Loc = getExprLoc(); + R1 = getSourceRange(); #endif return true; } |