Skip to content

Commit 33dd496

Browse files
committed
Merge remote-tracking branch 'origin/jazzy' into prepare-2.12.1
2 parents 1648cb5 + 4489d3b commit 33dd496

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
# TODO(andyz): When this clang-tidy issue is fixed, remove -Wno-unknown-warning-option
2929
# https://stackoverflow.com/a/41673702
3030
CXXFLAGS: >-
31-
-Wall -Wextra -Wwrite-strings -Wunreachable-code -Wpointer-arith -Wredundant-decls -Wno-unknown-warning-option -Wno-cpp
31+
-Wall -Wextra -Wwrite-strings -Wunreachable-code -Wpointer-arith -Wredundant-decls -Wno-unknown-warning-option
3232
CLANG_TIDY_ARGS: --fix --fix-errors --format-style=file
3333
DOCKER_IMAGE: moveit/moveit2:${{ matrix.env.IMAGE }}
3434
UPSTREAM_WORKSPACE: >

moveit_ros/moveit_servo/src/servo_node.cpp

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,14 @@
3838
*
3939
*/
4040

41-
#include <moveit_servo/servo_node.hpp>
41+
#if __has_include(<realtime_tools/realtime_helpers.hpp>)
42+
#include <realtime_tools/realtime_helpers.hpp>
43+
#else
4244
#include <realtime_tools/thread_priority.hpp>
45+
#endif
46+
4347
#include <moveit/utils/logger.hpp>
48+
#include <moveit_servo/servo_node.hpp>
4449

4550
namespace moveit_servo
4651
{

0 commit comments

Comments
 (0)