diff options
Diffstat (limited to 'contrib/llvm-project/clang/lib/AST/Interp/Source.cpp')
-rw-r--r-- | contrib/llvm-project/clang/lib/AST/Interp/Source.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/llvm-project/clang/lib/AST/Interp/Source.cpp b/contrib/llvm-project/clang/lib/AST/Interp/Source.cpp index 4e032c92d26d..45cd0ad4fd42 100644 --- a/contrib/llvm-project/clang/lib/AST/Interp/Source.cpp +++ b/contrib/llvm-project/clang/lib/AST/Interp/Source.cpp @@ -33,7 +33,7 @@ SourceRange SourceInfo::getRange() const { } const Expr *SourceInfo::asExpr() const { - if (auto *S = Source.dyn_cast<const Stmt *>()) + if (const auto *S = Source.dyn_cast<const Stmt *>()) return dyn_cast<Expr>(S); return nullptr; } |