summaryrefslogtreecommitdiff
path: root/common/const-object/test.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'common/const-object/test.hxx')
-rw-r--r--common/const-object/test.hxx11
1 files changed, 11 insertions, 0 deletions
diff --git a/common/const-object/test.hxx b/common/const-object/test.hxx
index 93977f0..2e73d96 100644
--- a/common/const-object/test.hxx
+++ b/common/const-object/test.hxx
@@ -5,6 +5,8 @@
#ifndef TEST_HXX
#define TEST_HXX
+#include <common/config.hxx> // HAVE_CXX11
+
#include <memory>
#include <odb/core.hxx>
@@ -21,7 +23,11 @@ struct obj1
void cf () const {}
};
+#ifdef HAVE_CXX11
+#pragma db object pointer (std::unique_ptr<obj2>)
+#else
#pragma db object pointer (std::auto_ptr<obj2>)
+#endif
struct obj2
{
obj2 () {}
@@ -45,7 +51,12 @@ struct aggr
int id;
const obj1* o1;
+
+#ifdef HAVE_CXX11
+ std::unique_ptr<const obj2> o2;
+#else
std::auto_ptr<const obj2> o2;
+#endif
};
#endif // TEST_HXX