summaryrefslogtreecommitdiff
path: root/odb-tests/evolution/soft-delete/model.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb-tests/evolution/soft-delete/model.hxx')
-rw-r--r--odb-tests/evolution/soft-delete/model.hxx8
1 files changed, 1 insertions, 7 deletions
diff --git a/odb-tests/evolution/soft-delete/model.hxx b/odb-tests/evolution/soft-delete/model.hxx
index 65083dd..093aadf 100644
--- a/odb-tests/evolution/soft-delete/model.hxx
+++ b/odb-tests/evolution/soft-delete/model.hxx
@@ -5,10 +5,8 @@
# error model.hxx included directly
#endif
-#include <common/config.hxx> // HAVE_CXX11
-
#include <string>
-#include <memory> // std::auto_ptr/unique_ptr
+#include <memory> // unique_ptr
#include <odb/core.hxx>
#include <odb/vector.hxx>
@@ -449,11 +447,7 @@ namespace MODEL_NAMESPACE(MODEL_VERSION)
#pragma db id
unsigned long id_;
-#ifdef HAVE_CXX11
std::unique_ptr<value> v;
-#else
- std::auto_ptr<value> v;
-#endif
unsigned long num;
};