Skip to content

Commit

Permalink
Removing std::binary_function usage (#561)
Browse files Browse the repository at this point in the history
Deprecated in C++11, removed in C++17
  • Loading branch information
aladram authored and wjwwood committed Oct 2, 2018
1 parent 6ff3ff4 commit eb439dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rclcpp/include/rclcpp/intra_process_manager_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ class IntraProcessManagerImpl : public IntraProcessManagerImplBase
std::hash<uint64_t>, std::equal_to<uint64_t>,
RebindAlloc<std::pair<const uint64_t, SubscriptionBase::WeakPtr>>>;

struct strcmp_wrapper : public std::binary_function<const char *, const char *, bool>
struct strcmp_wrapper
{
bool
operator()(const char * lhs, const char * rhs) const
Expand Down

0 comments on commit eb439dd

Please sign in to comment.