Fixed a GCC warning on Unit Test

This commit is contained in:
Sébastien Rombauts 2014-03-10 14:01:42 +01:00
parent b25b71bdd8
commit d9aa889898

View File

@ -21,7 +21,8 @@ namespace SQLite
/// definition of the assertion handler enabled when SQLITECPP_ENABLE_ASSERT_HANDLER is defined in the project (CMakeList.txt)
void assertion_failed(const char* apFile, const long apLine, const char* apFunc, const char* apExpr, const char* apMsg)
{
// TODO test
// TODO test that this assertion callback get called
std::cout << "assertion_failed(" << apFile << ", " << apLine << ", " << apFunc << ", " << apExpr << ", " << apMsg << ")\n";
}
}
#endif