Skip to content

Commit

Permalink
Change uncrustify max line length to 0 (#17)
Browse files Browse the repository at this point in the history
This is for compatibility with uncrustify v0.68.
  • Loading branch information
jacobperron authored Dec 21, 2018
1 parent ff35ba5 commit fc51d0c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,8 @@ if(BUILD_TESTING AND rosidl_generate_interfaces_ADD_LINTER_TESTS)
ament_uncrustify(
TESTNAME "uncrustify_rosidl_typesupport_fastrtps_c"
# the generated code might contain longer lines for templated types
MAX_LINE_LENGTH 999
# set the value to zero to tell uncrustify to ignore line lengths
MAX_LINE_LENGTH 0
${_generated_files})
endif()
endif()
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,8 @@ if(BUILD_TESTING AND rosidl_generate_interfaces_ADD_LINTER_TESTS)
ament_uncrustify(
TESTNAME "uncrustify_rosidl_typesupport_fastrtps_cpp"
# the generated code might contain longer lines for templated types
MAX_LINE_LENGTH 999
# set the value to zero to tell uncrustify to ignore line lengths
MAX_LINE_LENGTH 0
${_generated_files})
endif()
endif()

0 comments on commit fc51d0c

Please sign in to comment.