ipa320 / cob_perception_common

Apache License 2.0
13 stars 59 forks source link

bugfix for a warning #82

Closed ipa-rmb closed 7 years ago

fmessmer commented 7 years ago

@ipa-rmb please post the warning output to the PR description

ipa-rmb commented 7 years ago

Warning: 08:35:48 [ 50%] Building CXX object CMakeFiles/object_detection_visualizer.dir/ros/src/object_detection_visualizer_node.cpp.o 08:35:48 :0:15: warning: missing whitespace after the macro name

ipa-fmw suspected it might originate from here:

if CV_MAJOR_VERSION == 2

// do opencv 2 code

include <opencv/highgui.h>

elif CV_MAJOR_VERSION == 3

// do opencv 3 code

include <opencv2/highgui.hpp>

endif