Skip to content

Commit 4959dbe

Browse files
committed
disabling Werror because of deprecation warnings from ceres in Ubuntu 22.10
1 parent 2c3023b commit 4959dbe

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

fuse_graphs/CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ catkin_package(
2828
###########
2929
## Build ##
3030
###########
31-
add_compile_options(-Wall -Werror)
31+
# disabling until deprecated ceres::Problem::Options::local_parameterization_ownership is resolved
32+
add_compile_options(-Wall) # -Werror)
3233

3334
## fuse_graphs library
3435
add_library(${PROJECT_NAME}

fuse_optimizers/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ catkin_package(
2828
###########
2929
## Build ##
3030
###########
31-
add_compile_options(-Wall -Werror)
31+
add_compile_options(-Wall) # -Werror)
3232

3333
## fuse_optimizers library
3434
add_library(${PROJECT_NAME}

0 commit comments

Comments
 (0)