Use ASSERT() instead of assert().

This commit is contained in:
Gunnar Beutner 2013-08-02 10:11:48 +02:00
parent bd5e452c6f
commit 079567ea72
1 changed files with 1 additions and 1 deletions

View File

@ -358,7 +358,7 @@ void MysqlDbConnection::ExecuteQuery(const DbQuery& query)
}
if ((query.Type & DbQueryInsert) && (query.Type & DbQueryUpdate)) {
assert(query.Object);
ASSERT(query.Object);
if (GetInsertID(query.Object).IsValid())
type = DbQueryUpdate;