Author: Timm Bäder Date: 2023-11-27T11:17:49+01:00 New Revision: 489df61a2960cbd154fe0a2c23918c2609ef4357
URL: https://github.com/llvm/llvm-project/commit/489df61a2960cbd154fe0a2c23918c2609ef4357 DIFF: https://github.com/llvm/llvm-project/commit/489df61a2960cbd154fe0a2c23918c2609ef4357.diff LOG: [clang][Interp][NFC] const qualify a local variable Added: Modified: clang/lib/AST/Interp/ByteCodeExprGen.cpp Removed: ################################################################################ diff --git a/clang/lib/AST/Interp/ByteCodeExprGen.cpp b/clang/lib/AST/Interp/ByteCodeExprGen.cpp index 5dc1f9dfb10ff32..f45e8624a7741a5 100644 --- a/clang/lib/AST/Interp/ByteCodeExprGen.cpp +++ b/clang/lib/AST/Interp/ByteCodeExprGen.cpp @@ -75,7 +75,7 @@ template <class Emitter> class OptionScope final { template <class Emitter> bool ByteCodeExprGen<Emitter>::VisitCastExpr(const CastExpr *CE) { - auto *SubExpr = CE->getSubExpr(); + const Expr *SubExpr = CE->getSubExpr(); switch (CE->getCastKind()) { case CK_LValueToRValue: { _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits