From 1e91face3933f7af09099946cd50f1f955bcff5a Mon Sep 17 00:00:00 2001 From: kuzai Date: Mon, 14 Jan 2019 16:31:57 -0600 Subject: [PATCH] Bind is no longer in std::__1 (#618) Signed-off-by: kuzai --- rclcpp/include/rclcpp/function_traits.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rclcpp/include/rclcpp/function_traits.hpp b/rclcpp/include/rclcpp/function_traits.hpp index dd92cca..4ccfc75 100644 --- a/rclcpp/include/rclcpp/function_traits.hpp +++ b/rclcpp/include/rclcpp/function_traits.hpp @@ -81,7 +81,7 @@ struct function_traits: function_traits #if defined _LIBCPP_VERSION // libc++ (Clang) -struct function_traits> +struct function_traits> #elif defined _GLIBCXX_RELEASE // glibc++ (GNU C++ >= 7.1) struct function_traits> #elif defined __GLIBCXX__ // glibc++ (GNU C++) @@ -99,7 +99,7 @@ struct function_traits< // std::bind for free functions template #if defined _LIBCPP_VERSION // libc++ (Clang) -struct function_traits> +struct function_traits> #elif defined __GLIBCXX__ // glibc++ (GNU C++) struct function_traits> #elif defined _MSC_VER // MS Visual Studio