From 82972b7b0d2cfceec654acf33baa098081085772 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Tue, 14 Oct 2014 19:39:08 +0200 Subject: [PATCH] SymbolDatabase: fix debug output --- lib/symboldatabase.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/symboldatabase.cpp b/lib/symboldatabase.cpp index 28d00ece5..3eecd351a 100644 --- a/lib/symboldatabase.cpp +++ b/lib/symboldatabase.cpp @@ -1926,10 +1926,10 @@ void SymbolDatabase::printOut(const char *title) const std::cout << " isNoExcept: " << (func->isNoExcept ? "true" : "false") << std::endl; std::cout << " isThrow: " << (func->isThrow ? "true" : "false") << std::endl; std::cout << " isOperator: " << (func->isOperator ? "true" : "false") << std::endl; - std::cerr << " isAttributeConst: " << (func->isAttributeConst() ? "true" : "false") << std::endl; - std::cerr << " isAttributePure: " << (func->isAttributePure() ? "true" : "false") << std::endl; - std::cerr << " isAttributeNothrow: " << (func->isAttributeNothrow() ? "true" : "false") << std::endl; - std::cerr << " isDeclspecNothrow: " << (func->isDeclspecNothrow() ? "true" : "false") << std::endl; + std::cout << " isAttributeConst: " << (func->isAttributeConst() ? "true" : "false") << std::endl; + std::cout << " isAttributePure: " << (func->isAttributePure() ? "true" : "false") << std::endl; + std::cout << " isAttributeNothrow: " << (func->isAttributeNothrow() ? "true" : "false") << std::endl; + std::cout << " isDeclspecNothrow: " << (func->isDeclspecNothrow() ? "true" : "false") << std::endl; std::cout << " noexceptArg: " << (func->noexceptArg ? func->noexceptArg->str() : "none") << std::endl; std::cout << " throwArg: " << (func->throwArg ? func->throwArg->str() : "none") << std::endl; std::cout << " tokenDef: " << func->tokenDef->str() << " " <<_tokenizer->list.fileLine(func->tokenDef) << std::endl;