Better grammar building in tests/lr1_only.cpp

This commit is contained in:
Robin Jadoul 2017-01-20 13:47:19 +01:00
parent 48db984b69
commit 8358813204
1 changed files with 2 additions and 4 deletions

View File

@ -23,10 +23,8 @@ TEST(lr1, only) {
{"a", {"A"}},
{"b", {"A"}}
})) {
auto r = std::make_shared<Rule>();
r->head = p.first;
r->tail = p.second;
grammar.rules.emplace_back(std::move(r));
grammar.rules.emplace_back(std::make_shared<Rule>(p.first, p.second));
}
{