From e899bd7aec3aba6341e6f888031c449503152a27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20L=C3=BChne?= Date: Fri, 20 May 2016 17:05:49 +0200 Subject: [PATCH] Removed unintended debug output. --- src/plasp/sas/Description.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/plasp/sas/Description.cpp b/src/plasp/sas/Description.cpp index e1765f8..05ab86a 100644 --- a/src/plasp/sas/Description.cpp +++ b/src/plasp/sas/Description.cpp @@ -254,8 +254,6 @@ void Description::parseVersionSection(std::istream &istream) const if (formatVersion != 3) throw ParserException("Unsupported SAS format version (" + std::to_string(formatVersion) + ")"); - std::cout << "SAS format version: " << formatVersion << std::endl; - parseSectionIdentifier(istream, "end_version"); } @@ -435,8 +433,6 @@ void Description::parseAxiomSection(std::istream &istream) const auto numberOfAxiomRules = parse(istream); m_axiomRules.reserve(numberOfAxiomRules); - std::cout << "Axiom rules: " << numberOfAxiomRules << std::endl; - for (size_t i = 0; i < numberOfAxiomRules; i++) { parseSectionIdentifier(istream, "begin_rule");