aboutsummaryrefslogtreecommitdiff
path: root/qt/mysql
diff options
context:
space:
mode:
Diffstat (limited to 'qt/mysql')
-rw-r--r--qt/mysql/basic/driver.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/qt/mysql/basic/driver.cxx b/qt/mysql/basic/driver.cxx
index f0cc876..68d998a 100644
--- a/qt/mysql/basic/driver.cxx
+++ b/qt/mysql/basic/driver.cxx
@@ -47,10 +47,10 @@ main (int argc, char* argv[])
//
{
transaction t (db->begin ());
- object* ol = db->load<object> (o.str);
+ auto_ptr<object> p (db->load<object> (o.str));
t.commit ();
- assert (*ol == o);
+ assert (*p == o);
}
}
catch (const odb::exception& e)