From 2ac3e83cdb046e2863c9aaff56e8e1a9328a6f57 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sat, 1 May 2021 11:44:06 +0200 Subject: Remove stray use of nullptr --- odb/sqlite/connection.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 (); -- cgit v1.1