From a77412ed3603c86e3a5043e678e7e8abb09b1fc8 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sat, 11 May 2013 06:52:02 -0400 Subject: Make move constructor inline C++11 support has to be inline or template. --- odb/vector-impl.cxx | 24 ++---------------------- odb/vector-impl.ixx | 15 ++++++++++++++- 2 files changed, 16 insertions(+), 23 deletions(-) diff --git a/odb/vector-impl.cxx b/odb/vector-impl.cxx index 08019d6..402f5cf 100644 --- a/odb/vector-impl.cxx +++ b/odb/vector-impl.cxx @@ -4,15 +4,8 @@ #include -#include // std::memcpy, std::memset - -#ifdef ODB_CXX11 -# include // std::swap, std::move -#else -# include // std::swap -#endif - -#include // @@ tmp +#include // std::memcpy, std::memset +#include // std::swap using namespace std; @@ -184,19 +177,6 @@ namespace odb // vector_base // -#ifdef ODB_CXX11 - vector_base:: - vector_base (vector_base&& x) - : impl_ (std::move (x.impl_)), tran_ (0) - { - if (x.tran_ != 0) - { - x.tran_->callback_unregister (&x); - _arm (*x.tran_); - } - } -#endif - void vector_base:: rollback (unsigned short, void* key, unsigned long long) { diff --git a/odb/vector-impl.ixx b/odb/vector-impl.ixx index 41360b8..9fdadfb 100644 --- a/odb/vector-impl.ixx +++ b/odb/vector-impl.ixx @@ -3,7 +3,7 @@ // license : GNU GPL v2; see accompanying LICENSE file #ifdef ODB_CXX11 -# include // std::swap +# include // std::swap, std::move #else # include // std::swap #endif @@ -137,6 +137,19 @@ namespace odb // vector_base // +#ifdef ODB_CXX11 + inline vector_base:: + vector_base (vector_base&& x) + : impl_ (std::move (x.impl_)), tran_ (0) + { + if (x.tran_ != 0) + { + x.tran_->callback_unregister (&x); + _arm (*x.tran_); + } + } +#endif + inline void vector_base:: _arm (transaction& t) const { -- cgit v1.1