Skip to content
This repository has been archived by the owner on Dec 9, 2021. It is now read-only.

Commit

Permalink
Change uncrustify max line length to 0 (#16)
Browse files Browse the repository at this point in the history
This is for compatibility with uncrustify v0.68.
  • Loading branch information
jacobperron committed Dec 21, 2018
1 parent 9958d4a commit f6a985a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Expand Up @@ -289,7 +289,8 @@ if(BUILD_TESTING AND rosidl_generate_interfaces_ADD_LINTER_TESTS)
ament_uncrustify(
TESTNAME "uncrustify_rosidl_typesupport_opensplice_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()
Expand Up @@ -304,7 +304,8 @@ if(BUILD_TESTING AND rosidl_generate_interfaces_ADD_LINTER_TESTS)
ament_uncrustify(
TESTNAME "uncrustify_rosidl_typesupport_opensplice_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 f6a985a

Please sign in to comment.