File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed
grid_map_cv/include/grid_map_cv Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change 1414
1515#include " grid_map_core/grid_map_core.hpp"
1616
17+ // GCC 13 has false positive warnings around array-bounds.
18+ // Suppress them until this is fixed in upstream gcc. See
19+ // https://gcc.gnu.org/bugzilla/show_bug.cgi?id=114758 for more details.
20+ #if defined(__GNUC__) && !defined(__clang__)
21+ #pragma GCC diagnostic push
22+ #pragma GCC diagnostic ignored "-Warray-bounds"
23+ #endif
1724
1825TEST (EigenMatrixBaseAddons, numberOfFinites)
1926{
Original file line number Diff line number Diff line change 2020#include < string>
2121#include < limits>
2222
23+ // GCC 13 has false positive warnings around stringop-overflow.
24+ // Suppress them until this is fixed in upstream gcc. See
25+ // https://gcc.gnu.org/bugzilla/show_bug.cgi?id=114758 for more details.
26+ #if defined(__GNUC__) && !defined(__clang__)
27+ #pragma GCC diagnostic push
28+ #pragma GCC diagnostic ignored "-Wstringop-overflow"
29+ #endif
30+
2331namespace grid_map
2432{
2533
You can’t perform that action at this time.
0 commit comments