Default the copy and move operators because the virtual dtor is explicit
| 62 | virtual ~TableMultiVariableLookup() override = default; |
| 63 | // Default the copy and move operators because the virtual dtor is explicit |
| 64 | TableMultiVariableLookup(const TableMultiVariableLookup& other) = default; |
| 65 | TableMultiVariableLookup(TableMultiVariableLookup&& other) = default; |
| 66 | TableMultiVariableLookup& operator=(const TableMultiVariableLookup&) = default; |
| 67 | TableMultiVariableLookup& operator=(TableMultiVariableLookup&&) = default; |