diff options
-rw-r--r-- | odb/sqlite/connection.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/odb/sqlite/connection.cxx b/odb/sqlite/connection.cxx index bb71274..0445163 100644 --- a/odb/sqlite/connection.cxx +++ b/odb/sqlite/connection.cxx @@ -261,7 +261,7 @@ namespace odb // The current first active_object may remove itself from the list and // make the second object (if any) the new first. // - for (active_object** pp (&active_objects_); *pp != nullptr; ) + for (active_object** pp (&active_objects_); *pp != 0; ) { active_object* p (*pp); p->clear (); |