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 a7d3ae6 commit 32265b8Copy full SHA for 32265b8
mlir/include/mlir/Support/StateStack.h
@@ -32,7 +32,7 @@ class StateStackFrame {
32
33
private:
34
const TypeID typeID;
35
- virtual void anchor() {};
+ virtual void anchor();
36
};
37
38
/// Concrete CRTP base class for StateStack frames. This is used for keeping a
mlir/lib/Support/StateStack.cpp
@@ -7,3 +7,9 @@
7
//===----------------------------------------------------------------------===//
8
9
#include "mlir/Support/StateStack.h"
10
+
11
+namespace mlir {
12
13
+void StateStackFrame::anchor() {}
14
15
+} // namespace mlir
0 commit comments