[clang] 091328f - [clang][bytecode][NFC] Make Compiler final (#219774)
via cfe-commits
cfe-commits at lists.llvm.org
Sun Aug 30 01:08:15 PDT 2026
Author: Timm Baeder
Date: 2026-08-30T10:08:10+02:00
New Revision: 091328f2e804cb5485c9ddfe08bd1f3d3726ada3
URL: https://github.com/llvm/llvm-project/commit/091328f2e804cb5485c9ddfe08bd1f3d3726ada3
DIFF: https://github.com/llvm/llvm-project/commit/091328f2e804cb5485c9ddfe08bd1f3d3726ada3.diff
LOG: [clang][bytecode][NFC] Make Compiler final (#219774)
Added:
Modified:
clang/lib/AST/ByteCode/Compiler.h
Removed:
################################################################################
diff --git a/clang/lib/AST/ByteCode/Compiler.h b/clang/lib/AST/ByteCode/Compiler.h
index f34809cd0f14c..884ff9336de2b 100644
--- a/clang/lib/AST/ByteCode/Compiler.h
+++ b/clang/lib/AST/ByteCode/Compiler.h
@@ -115,8 +115,8 @@ enum class ScopeKind { Block, FullExpression, Call };
/// Compilation context for expressions.
template <class Emitter>
-class Compiler : public ConstStmtVisitor<Compiler<Emitter>, bool>,
- public Emitter {
+class Compiler final : public ConstStmtVisitor<Compiler<Emitter>, bool>,
+ public Emitter {
protected:
// Aliases for types defined in the emitter.
using LabelTy = typename Emitter::LabelTy;
More information about the cfe-commits
mailing list