From 73df407f97266f8591698b821ffbb3ed40df53fb Mon Sep 17 00:00:00 2001 From: Chris Lalancette Date: Fri, 24 Jun 2022 17:09:37 +0000 Subject: [PATCH] Remove Werror from test_quality_of_service. There really isn't a reason to hard-code it here, and this makes it match the rest of packages in this repository (and in all of ROS 2 more generally). Signed-off-by: Chris Lalancette --- test_quality_of_service/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_quality_of_service/CMakeLists.txt b/test_quality_of_service/CMakeLists.txt index bec65691..00628d20 100644 --- a/test_quality_of_service/CMakeLists.txt +++ b/test_quality_of_service/CMakeLists.txt @@ -8,7 +8,7 @@ if(NOT CMAKE_CXX_STANDARD) endif() if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang") - add_compile_options(-Wall -Wextra -Wpedantic -Werror) + add_compile_options(-Wall -Wextra -Wpedantic) endif() find_package(ament_cmake REQUIRED)