From c465a35d31812467ded1655b83543267fd3370cb Mon Sep 17 00:00:00 2001 From: Junghoon Park Date: Thu, 22 Mar 2018 10:42:19 +0900 Subject: [PATCH] Remove printing the input file Change-Id: Ie651b669ae59e0bbb11b33ce123fe52e5f3bfeea Signed-off-by: Junghoon Park --- idlc/parser.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/idlc/parser.cc b/idlc/parser.cc index 413eaa6..e335d30 100644 --- a/idlc/parser.cc +++ b/idlc/parser.cc @@ -50,9 +50,6 @@ std::shared_ptr Parser::GetDoc() { } bool Parser::Parse(const std::string& input) { - std::cout << "[TIDL:Parser] input: " << std::endl - << input << std::endl; - std::string in = input; error_ = false; @@ -63,7 +60,6 @@ bool Parser::Parse(const std::string& input) { return false; } - std::cout << "[TIDL:Parser] OK" << std::endl; return true; } -- 2.7.4