Skip to content

Commit

Permalink
Fix formatting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerjw committed Apr 6, 2021
1 parent 9171e39 commit bc896f5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/industrial_ci_action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
CLANG_TIDY: true
CLANG_TIDY_BASE_REF: "${{ github.base_ref || github.ref }}"

name: "${{ matrix.env.ROS_DISTRO }} + ${{ matrix.env.ROS_REPO }}${{ matrix.env.CLANG_TIDY && ' + clang-tidy' || '' }}"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ add_library(${PROJECT_NAME}
src/imarker_end_effector.cpp
)
target_compile_options(${PROJECT_NAME} PRIVATE
"-Wall -Wextra -Wwrite-strings -Wunreachable-code -Wpointer-arith -Wredundant-decls")
-Wall -Wextra -Wwrite-strings -Wunreachable-code -Wpointer-arith -Wredundant-decls)
set_target_properties(${PROJECT_NAME} PROPERTIES VERSION ${${PROJECT_NAME}_VERSION})
add_dependencies(${PROJECT_NAME} graph_msgs_generate_messages_cpp)
target_link_libraries(${PROJECT_NAME}
Expand All @@ -65,7 +65,7 @@ target_link_libraries(${PROJECT_NAME}
# Demo executable
add_executable(${PROJECT_NAME}_demo src/${PROJECT_NAME}_demo.cpp)
target_compile_options(${PROJECT_NAME}_demo PRIVATE
"-Wall -Wextra -Wwrite-strings -Wunreachable-code -Wpointer-arith -Wredundant-decls")
-Wall -Wextra -Wwrite-strings -Wunreachable-code -Wpointer-arith -Wredundant-decls)
target_link_libraries(${PROJECT_NAME}_demo
${catkin_LIBRARIES} ${PROJECT_NAME}
)
Expand Down
2 changes: 1 addition & 1 deletion launch/debug_settings.gdb
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
set breakpoint pending on
break planning_scene.cpp:1600
break planning_scene.cpp:1600
2 changes: 1 addition & 1 deletion mainpage.dox
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
\section Action Server for Generating Grasps
- \link moveit_simple_grasps::GraspGeneratorServer \endlink

*/
*/

0 comments on commit bc896f5

Please sign in to comment.