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

vision_msgs in stag_detect CMakelists.txt and use default C++ instead of C++11 #278

Open
wants to merge 9 commits into
base: noetic-devel
Choose a base branch
from
3 changes: 1 addition & 2 deletions stag_detect/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ find_package(catkin REQUIRED COMPONENTS
std_msgs
fiducial_msgs
dynamic_reconfigure
vision_msgs
)

find_package(OpenCV REQUIRED)
Expand All @@ -36,8 +37,6 @@ catkin_package(
## Build ##
###########

add_definitions(-std=c++11)

include_directories(
include
${catkin_INCLUDE_DIRS}
Expand Down
2 changes: 1 addition & 1 deletion stag_detect/include/stag_ros/stag_nodelet.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#pragma once
#include <pluginlib/class_list_macros.h>
#include <pluginlib/class_list_macros.hpp>

#include <nodelet/nodelet.h>

Expand Down