From ed0c44891fb510c8181c2ae9332d7a030f0aaaff Mon Sep 17 00:00:00 2001 From: David Shah Date: Thu, 7 Jun 2018 13:36:42 +0200 Subject: Replacing Boost type_traits with std Signed-off-by: David Shah --- common/pycontainers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'common') diff --git a/common/pycontainers.h b/common/pycontainers.h index 64fb265b..6e2cdea9 100644 --- a/common/pycontainers.h +++ b/common/pycontainers.h @@ -90,7 +90,7 @@ inline void KeyError() { PyErr_SetString(PyExc_KeyError, "Key not found"); } template struct map_wrapper { - typedef boost::remove_cv_t> K; + typedef typename std::remove_cv::type>::type K; typedef typename T::mapped_type V; typedef typename T::value_type KV; -- cgit v1.2.3