compatibility with bison 3.2 (fix #70)

This commit is contained in:
Wolfgang Thaller 2018-12-22 10:07:08 +01:00
parent 68636d820c
commit 00471c6104
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@
{
public:
RezSymbol() = default;
RezSymbol(const yy::RezParser::symbol_type& x) : yy::RezParser::symbol_type(x) {}
RezSymbol(yy::RezParser::symbol_type&& x) : yy::RezParser::symbol_type(std::move(x)) {}
};
}