mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-22 19:30:36 +00:00
Revert ineffective workaround for bison 3.2.3 bug
This reverts commit 7eced7335a
.
This commit is contained in:
parent
ac1b89dd41
commit
a3d330fa3b
@ -118,18 +118,7 @@
|
||||
{
|
||||
public:
|
||||
RezSymbol() = default;
|
||||
|
||||
// Bison 3.2 has a bug in the move constructor for basic_symbol<by_type>.
|
||||
// Bison-generated code uses only basic_symbol<by_type>::move, which
|
||||
// works without crashing.
|
||||
RezSymbol(yy::RezParser::symbol_type&& x)
|
||||
{
|
||||
move(x);
|
||||
}
|
||||
RezSymbol(RezSymbol&& x)
|
||||
{
|
||||
move(x);
|
||||
}
|
||||
RezSymbol(yy::RezParser::symbol_type&& x) : yy::RezParser::symbol_type(std::move(x)) {}
|
||||
};
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user