We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cdb259 commit fa59680Copy full SHA for fa59680
rclcpp/test/rclcpp/test_utilities.cpp
@@ -25,7 +25,20 @@
25
#include "rclcpp/exceptions.hpp"
26
#include "rclcpp/utilities.hpp"
27
28
+#ifdef __clang__
29
+#pragma clang diagnostic push
30
+#pragma clang diagnostic ignored "-Wordered-compare-function-pointers"
31
+#endif
32
+// TODO(ahcorde): the function mocking_utils::patch_and_return called with
33
+// rcl_logging_configure_with_output_handler is returning: "Comparison between pointer and integer"
34
+// Disabling this warning is fine for now.
35
+// Related issue https://github.com/ros2/rclcpp/issues/2488
36
#include "../mocking_utils/patch.hpp"
37
+
38
39
+#pragma clang diagnostic pop
40
41
42
#include "../utils/rclcpp_gtest_macros.hpp"
43
44
TEST(TestUtilities, remove_ros_arguments) {
0 commit comments