From ebe58f78cf98da0f43cd63aca8dc4f26a9baa2cc Mon Sep 17 00:00:00 2001 From: Uli Schlachter Date: Sat, 13 Apr 2019 15:59:30 +0200 Subject: [PATCH] lp_tokenizer: Add missing verbose print Three out of two places that call m_tokens.push_back() in lp_tokenizer::parse_all() were followed by a verbose print. This commit adds a verbose print to the third such place. Signed-off-by: Uli Schlachter --- src/opt/opt_parse.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/opt/opt_parse.cpp b/src/opt/opt_parse.cpp index 47ce31e1b..215650300 100644 --- a/src/opt/opt_parse.cpp +++ b/src/opt/opt_parse.cpp @@ -411,6 +411,7 @@ private: } m_buffer.push_back(0); m_tokens.push_back(asymbol(symbol(m_buffer.c_ptr()), in.line())); + IF_VERBOSE(10, verbose_stream() << "tok: " << m_tokens.back() << "\n"); continue; } }