Skip to content

Commit

Permalink
fix: silence compiler warning in tbb header about old-style casts. (#…
Browse files Browse the repository at this point in the history
…3824)

Silence warnings emitted by GCC 13.1 about old-style c-casts in some headers of tbb 2021.13.
  • Loading branch information
goetzgaycken authored Nov 12, 2024
1 parent 087855f commit 6b31eb2
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@
#include <variant>
#include <vector>

#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wold-style-cast"
#include <tbb/combinable.h>
#pragma GCC diagnostic pop

namespace Acts {
class MagneticFieldProvider;
Expand Down

0 comments on commit 6b31eb2

Please sign in to comment.