Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use boost::placeholders::_1 instead of deprecated _1 #105

Open
wants to merge 2 commits into
base: noetic-devel
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
class_loader.h is now class_loader.hpp, class_list_macros.h has an hp…
…p also
lucasw committed Dec 24, 2022
commit e83aae14506b1804b589afcbf6e63ecf504c808b
2 changes: 1 addition & 1 deletion hector_geotiff/src/geotiff_node.cpp
Original file line number Diff line number Diff line change
@@ -33,7 +33,7 @@
#include <ros/ros.h>
#include <ros/console.h>

#include <pluginlib/class_loader.h>
#include <pluginlib/class_loader.hpp>

#include <memory>
#include <boost/algorithm/string.hpp>
2 changes: 1 addition & 1 deletion hector_geotiff_plugins/src/trajectory_geotiff_plugin.cpp
Original file line number Diff line number Diff line change
@@ -119,5 +119,5 @@ void TrajectoryMapWriter::draw(MapWriterInterface *interface)
} // namespace

//register this planner as a MapWriterPluginInterface plugin
#include <pluginlib/class_list_macros.h>
#include <pluginlib/class_list_macros.hpp>
PLUGINLIB_EXPORT_CLASS(hector_geotiff_plugins::TrajectoryMapWriter, hector_geotiff::MapWriterPluginInterface)