summaryrefslogtreecommitdiff
path: root/odb-tests/oracle/native/driver.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb-tests/oracle/native/driver.cxx')
-rw-r--r--odb-tests/oracle/native/driver.cxx10
1 files changed, 6 insertions, 4 deletions
diff --git a/odb-tests/oracle/native/driver.cxx b/odb-tests/oracle/native/driver.cxx
index 541d21e..5aa6222 100644
--- a/odb-tests/oracle/native/driver.cxx
+++ b/odb-tests/oracle/native/driver.cxx
@@ -4,14 +4,16 @@
// Test native SQL execution.
//
-#include <memory> // std::auto_ptr
-#include <cassert>
+#include <memory> // std::unique_ptr
#include <iostream>
#include <odb/oracle/database.hxx>
#include <odb/oracle/transaction.hxx>
-#include <common/common.hxx>
+#include <libcommon/common.hxx>
+
+#undef NDEBUG
+#include <cassert>
using namespace std;
namespace oracle = odb::oracle;
@@ -22,7 +24,7 @@ main (int argc, char* argv[])
{
try
{
- auto_ptr<database> db (create_specific_database<database> (argc, argv));
+ unique_ptr<database> db (create_specific_database<database> (argc, argv));
// Create the database schema.
//