diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-06-15 18:50:51 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-06-15 18:50:51 +0200 |
commit | 72f9ee644d3a048e68ba9570a096b6dd12c5ee1a (patch) | |
tree | 5670eaa8c20845b401c0b09bd0d643b971c675d9 /common/readonly | |
parent | 766b7533addb5c981b135640321c291be270d907 (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/readonly')
-rw-r--r-- | common/readonly/test.hxx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/common/readonly/test.hxx b/common/readonly/test.hxx index 689b571..926b596 100644 --- a/common/readonly/test.hxx +++ b/common/readonly/test.hxx @@ -5,6 +5,8 @@ #ifndef TEST_HXX #define TEST_HXX +#include <common/config.hxx> // HAVE_CXX11 + #include <vector> #include <memory> // std::auto_ptr @@ -203,10 +205,17 @@ struct wrapper #pragma db id unsigned long id; +#ifdef HAVE_CXX11 + std::unique_ptr<unsigned long> pl; + const std::unique_ptr<unsigned long> cpl; + std::unique_ptr<const unsigned long> pcl; + const std::unique_ptr<const unsigned long> cpcl; +#else std::auto_ptr<unsigned long> pl; const std::auto_ptr<unsigned long> cpl; std::auto_ptr<const unsigned long> pcl; const std::auto_ptr<const unsigned long> cpcl; +#endif }; // Readonly object with auto id. |