summaryrefslogtreecommitdiff
path: root/boost/container/detail/copy_move_algo.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/container/detail/copy_move_algo.hpp')
-rw-r--r--boost/container/detail/copy_move_algo.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/boost/container/detail/copy_move_algo.hpp b/boost/container/detail/copy_move_algo.hpp
index 23fa730838..f590a8aaf3 100644
--- a/boost/container/detail/copy_move_algo.hpp
+++ b/boost/container/detail/copy_move_algo.hpp
@@ -252,15 +252,15 @@ struct disable_if_memzero_initializable
template <typename I, typename R>
struct enable_if_trivially_destructible
- : enable_if_c < false/*container_detail::is_trivially_destructible
- <typename boost::container::iterator_traits<I>::value_type>::value*/
+ : enable_if_c < container_detail::is_trivially_destructible
+ <typename boost::container::iterator_traits<I>::value_type>::value
, R>
{};
template <typename I, typename R>
struct disable_if_trivially_destructible
- : enable_if_c <true/*!container_detail::is_trivially_destructible
- <typename boost::container::iterator_traits<I>::value_type>::value*/
+ : enable_if_c <!container_detail::is_trivially_destructible
+ <typename boost::container::iterator_traits<I>::value_type>::value
, R>
{};