From 0ff2ebb37f70f126c326f289f1f24b65446378f3 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 26 Dec 2015 14:38:45 -0500 Subject: [PATCH] Grammar: No need to notify on validation pass - The lack of exceptions is all we need. --- src/Grammar.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/Grammar.cpp b/src/Grammar.cpp index 55220f93..7cb043d6 100644 --- a/src/Grammar.cpp +++ b/src/Grammar.cpp @@ -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"; } ////////////////////////////////////////////////////////////////////////////////