We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c555c8d commit 9260d31Copy full SHA for 9260d31
clang/lib/AST/ByteCode/Frame.cpp
clang/lib/AST/ByteCode/Frame.h
@@ -24,7 +24,7 @@ namespace interp {
24
/// Base class for stack frames, shared between VM and walker.
25
class Frame {
26
public:
27
- virtual ~Frame();
+ virtual ~Frame() = default;
28
29
/// Generates a human-readable description of the call site.
30
virtual void describe(llvm::raw_ostream &OS) const = 0;
clang/lib/AST/CMakeLists.txt
@@ -74,7 +74,6 @@ add_clang_library(clangAST
74
ByteCode/Descriptor.cpp
75
ByteCode/Disasm.cpp
76
ByteCode/EvalEmitter.cpp
77
- ByteCode/Frame.cpp
78
ByteCode/Function.cpp
79
ByteCode/FunctionPointer.cpp
80
ByteCode/InterpBuiltin.cpp
0 commit comments