From 00471c6104ff27df838e02ecfb9d4743d89d3c47 Mon Sep 17 00:00:00 2001 From: Wolfgang Thaller Date: Sat, 22 Dec 2018 10:07:08 +0100 Subject: [PATCH] compatibility with bison 3.2 (fix #70) --- Rez/RezParser.yy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rez/RezParser.yy b/Rez/RezParser.yy index 58c2a4fb3d..7563a33036 100644 --- a/Rez/RezParser.yy +++ b/Rez/RezParser.yy @@ -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)) {} }; }