Grammar: No need to notify on validation pass

- The lack of exceptions is all we need.
This commit is contained in:
Paul Beckingham 2015-12-26 14:38:45 -05:00
parent 63df5ba992
commit 0ff2ebb37f

View file

@ -287,9 +287,6 @@ void Grammar::validate () const
for (auto& nu : notUsed)
if (nu != _start)
throw format ("Definition '{1}' is defined, but not referenced.", nu);
if (_debug)
std::cout << "Validated\n";
}
////////////////////////////////////////////////////////////////////////////////