Skip to content

Commit

Permalink
eliminate some ogre deprecation warnings, make eigen and ogre warning…
Browse files Browse the repository at this point in the history
…s in fuse_viz not errors for now
  • Loading branch information
lucasw committed Apr 17, 2024
1 parent bd9e8d9 commit ef8ff20
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion fuse_viz/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ add_definitions(-DQT_NO_KEYWORDS)
###########
## Build ##
###########
add_compile_options(-Wall -Werror)
# add_compile_options(-Wall -Werror)
add_compile_options(-Wall)

catkin_package(
INCLUDE_DIRS include
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ Ogre::ColourValue RelativePose2DStampedConstraintVisual::computeLossErrorLineCol
// Get the error line color as HSB:
Ogre::ColourValue error_line_color(color.r, color.g, color.b);
Ogre::Real hue, saturation, brightness;
error_line_color.getHSB(&hue, &saturation, &brightness);
error_line_color.getHSB(hue, saturation, brightness);

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

0 comments on commit ef8ff20

Please sign in to comment.