Skip to content

Commit ae0553a

Browse files
authored
Shorten some excessively long lines of CMake (#300)
The line length enforcement in ament_lint_cmake has been broken for some time, but will be fixed by ament/ament_lint#236. This change brings this package into compliance with a 120 column limit. Signed-off-by: Scott K Logan <logans@cottsay.net>
1 parent 4d4e831 commit ae0553a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

rmw_implementation_cmake/cmake/get_default_rmw_implementation.cmake

+3-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,9 @@ macro(get_default_rmw_implementation var)
5757
list(FIND _middleware_implementations "${_middleware_implementation}" _index)
5858
if(_index EQUAL -1)
5959
string(REPLACE ";" ", " _middleware_implementations_string "${_middleware_implementations}")
60-
message(FATAL_ERROR "Could not find ROS middleware implementation '${_middleware_implementation}'. Choose one of the following: ${_middleware_implementations_string}")
60+
message(FATAL_ERROR
61+
"Could not find ROS middleware implementation '${_middleware_implementation}'. "
62+
"Choose one of the following: ${_middleware_implementations_string}")
6163
endif()
6264
find_package("${_middleware_implementation}" REQUIRED)
6365

0 commit comments

Comments
 (0)