Use ASSERT() instead of assert().

This commit is contained in:
Gunnar Beutner 2013-08-02 10:11:48 +02:00
parent bd5e452c6f
commit 079567ea72

View File

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