From 7c26845bb47bffeb53b4cc28fd8881690088cda6 Mon Sep 17 00:00:00 2001 From: Matt Blair Date: Mon, 27 Apr 2015 19:23:54 -0400 Subject: [PATCH] Replace 'boost::is_convertible' with 'std::is_convertible' --- include/yaml-cpp/node/detail/iterator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/yaml-cpp/node/detail/iterator.h b/include/yaml-cpp/node/detail/iterator.h index d170f81..8e82576 100644 --- a/include/yaml-cpp/node/detail/iterator.h +++ b/include/yaml-cpp/node/detail/iterator.h @@ -36,7 +36,7 @@ class iterator_base template iterator_base(const iterator_base& rhs, - typename std::enable_if::value, + typename std::enable_if::value, enabler>::type = enabler()) : iterator_base::iterator_adaptor_(rhs.base()), m_pMemory(rhs.m_pMemory) {}