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 4c03620 commit 814e754Copy full SHA for 814e754
tests/unittests/support/executors/strand_executor_test.cpp
@@ -15,6 +15,13 @@
15
#include <gtest/gtest.h>
16
#include <numeric>
17
18
+// Disable GCC 5's -Wsuggest-override warnings in gtest.
19
+#ifdef __clang__
20
+#pragma GCC diagnostic ignored "-Wall"
21
+#else // __clang__
22
+#pragma GCC diagnostic ignored "-Wsuggest-override"
23
+#endif // __clang__
24
+
25
using namespace srsran;
26
27
// Test helper function that verifies that a given number of tasks are executed in order.
0 commit comments