Skip to content

Commit

Permalink
Deactivate compiler warning for class_loader
Browse files Browse the repository at this point in the history
  • Loading branch information
christophfroehlich committed Oct 26, 2024
1 parent 6ac94c5 commit bb6e50f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion transmission_interface/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@ cmake_minimum_required(VERSION 3.5)
project(transmission_interface)

if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
add_compile_options(-Wall -Wextra -Werror=conversion -Werror=unused-but-set-variable -Werror=return-type -Werror=shadow)
add_compile_options(-Wall -Wextra -Werror=conversion -Werror=unused-but-set-variable -Werror=return-type
# deactivating this, because of issue in upstream class_loader_imp.hpp
# -Werror=shadow
)
endif()

set(THIS_PACKAGE_INCLUDE_DEPENDS
Expand Down

0 comments on commit bb6e50f

Please sign in to comment.