ebo_functor_holder: compile fix for copy constructor

This commit is contained in:
Tim Blechmann
2015-12-17 23:49:01 +01:00
parent 259e4a939f
commit 95a5a56bc0

View File

@@ -183,7 +183,7 @@ class ebo_functor_holder
{} {}
ebo_functor_holder(const ebo_functor_holder &x) ebo_functor_holder(const ebo_functor_holder &x)
: t_(x) : t_(x.t_)
{} {}
ebo_functor_holder(BOOST_RV_REF(ebo_functor_holder) x) ebo_functor_holder(BOOST_RV_REF(ebo_functor_holder) x)