forked from OSchip/llvm-project
Provide a definition for OperationPosition::kDown
This isn't necessary in C++17, but C++14 still requires it.
This commit is contained in:
parent
1b0312d280
commit
8521850f20
|
@ -44,3 +44,8 @@ OperandPosition::OperandPosition(const KeyTy &key) : Base(key) {
|
||||||
OperandGroupPosition::OperandGroupPosition(const KeyTy &key) : Base(key) {
|
OperandGroupPosition::OperandGroupPosition(const KeyTy &key) : Base(key) {
|
||||||
parent = std::get<0>(key);
|
parent = std::get<0>(key);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
// OperationPosition
|
||||||
|
|
||||||
|
constexpr unsigned OperationPosition::kDown;
|
||||||
|
|
Loading…
Reference in New Issue