From 35150119b3adf82c35fe3cbcc1a7c8f5bbf5bdf5 Mon Sep 17 00:00:00 2001 From: Anis Ladram Date: Tue, 25 Sep 2018 11:50:08 -0400 Subject: [PATCH] Removing std::binary_function usage Deprecated in C++11, removed in C++17 --- rclcpp/include/rclcpp/intra_process_manager_impl.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rclcpp/include/rclcpp/intra_process_manager_impl.hpp b/rclcpp/include/rclcpp/intra_process_manager_impl.hpp index beeaf4ce2c..48d96ae1ea 100644 --- a/rclcpp/include/rclcpp/intra_process_manager_impl.hpp +++ b/rclcpp/include/rclcpp/intra_process_manager_impl.hpp @@ -262,7 +262,7 @@ class IntraProcessManagerImpl : public IntraProcessManagerImplBase std::hash, std::equal_to, RebindAlloc>>; - struct strcmp_wrapper : public std::binary_function + struct strcmp_wrapper { bool operator()(const char * lhs, const char * rhs) const