Better grammar building in tests/lr1_only.cpp
This commit is contained in:
parent
48db984b69
commit
8358813204
|
@ -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));
|
||||
}
|
||||
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue