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;