diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2021-05-01 11:44:06 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2021-05-01 11:44:06 +0200 |
commit | 2ac3e83cdb046e2863c9aaff56e8e1a9328a6f57 (patch) | |
tree | 134e42110fd2e3e698f51a22c974a3016d6b5a32 | |
parent | c22cc575cfd2e89771093b15aa337d563f1eba5b (diff) |
Remove stray use of nullptr
-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 (); |