Skip to content

Commit 42816fd

Browse files
committed
[geom] Ignoring c++20 attributes when compiling bvh.h
1 parent de95c5e commit 42816fd

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

geom/geom/src/TGeoParallelWorld.cxx

+5
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,13 @@ method.
4040
#include <mutex>
4141

4242
// this is for the bvh acceleration stuff
43+
#ifdef __GNUC__
4344
#pragma GCC diagnostic push
4445
#pragma GCC diagnostic ignored "-Wall"
4546
#pragma GCC diagnostic ignored "-Wshadow"
4647
#pragma GCC diagnostic ignored "-Wunknown-pragmas"
48+
#pragma GCC diagnostic ignored "-Wattributes"
49+
#endif
4750

4851
// V2 BVH
4952
#include <bvh/v2/bvh.h>
@@ -1485,4 +1488,6 @@ void TGeoParallelWorld::TestVoxelGrid()
14851488
}
14861489
}
14871490

1491+
#ifdef __GNUC__
14881492
#pragma GCC diagnostic pop
1493+
#endif

0 commit comments

Comments
 (0)