aboutsummaryrefslogtreecommitdiff
path: root/common/wrapper
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-06-15 18:50:51 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-06-15 18:50:51 +0200
commit72f9ee644d3a048e68ba9570a096b6dd12c5ee1a (patch)
tree5670eaa8c20845b401c0b09bd0d643b971c675d9 /common/wrapper
parent766b7533addb5c981b135640321c291be270d907 (diff)
Get rid of C++11 deprecation warnings for auto_ptr, exception specs
In particular, std::auto_ptr is no longer mapped in C++11.
Diffstat (limited to 'common/wrapper')
-rw-r--r--common/wrapper/test.hxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/common/wrapper/test.hxx b/common/wrapper/test.hxx
index 9e3dc2b..36aec87 100644
--- a/common/wrapper/test.hxx
+++ b/common/wrapper/test.hxx
@@ -231,7 +231,11 @@ namespace test5
unsigned long id;
#pragma db null
+#ifdef HAVE_CXX11
+ std::unique_ptr<comp> p;
+#else
std::auto_ptr<comp> p;
+#endif
odb::nullable<comp> n;