Skip to content

Commit ef8ff20

Browse files
committed
eliminate some ogre deprecation warnings, make eigen and ogre warnings in fuse_viz not errors for now
1 parent bd9e8d9 commit ef8ff20

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

fuse_viz/CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ add_definitions(-DQT_NO_KEYWORDS)
3333
###########
3434
## Build ##
3535
###########
36-
add_compile_options(-Wall -Werror)
36+
# add_compile_options(-Wall -Werror)
37+
add_compile_options(-Wall)
3738

3839
catkin_package(
3940
INCLUDE_DIRS include

fuse_viz/src/relative_pose_2d_stamped_constraint_visual.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ Ogre::ColourValue RelativePose2DStampedConstraintVisual::computeLossErrorLineCol
343343
// Get the error line color as HSB:
344344
Ogre::ColourValue error_line_color(color.r, color.g, color.b);
345345
Ogre::Real hue, saturation, brightness;
346-
error_line_color.getHSB(&hue, &saturation, &brightness);
346+
error_line_color.getHSB(hue, saturation, brightness);
347347

348348
// We should correct the color brightness if it is smaller than minimum brightness. Otherwise, we would get an
349349
// incorrect loss brightness.

0 commit comments

Comments
 (0)