Skip to content

Commit 9fe73e7

Browse files
mitsudome-rkobayu858
authored andcommitted
fix(dummy_infrastructure): fix bugprone-reserved-identifier (autowarefoundation#9919)
Signed-off-by: kobayu858 <[email protected]> Co-authored-by: kobayu858 <[email protected]>
1 parent af09e57 commit 9fe73e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

system/dummy_infrastructure/src/dummy_infrastructure_node/dummy_infrastructure_node.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ using namespace std::literals;
2424
using std::chrono::duration;
2525
using std::chrono::duration_cast;
2626
using std::chrono::nanoseconds;
27-
using std::placeholders::_1;
2827

2928
namespace dummy_infrastructure
3029
{
@@ -84,6 +83,7 @@ boost::optional<InfrastructureCommandArray> findCommand(
8483
DummyInfrastructureNode::DummyInfrastructureNode(const rclcpp::NodeOptions & node_options)
8584
: Node("dummy_infrastructure", node_options)
8685
{
86+
using std::placeholders::_1;
8787
// Parameter Server
8888
set_param_res_ =
8989
this->add_on_set_parameters_callback(std::bind(&DummyInfrastructureNode::onSetParam, this, _1));

0 commit comments

Comments
 (0)