Skip to content

Commit

Permalink
fix: silence compiler warning in tbb header about old-style casts. (a…
Browse files Browse the repository at this point in the history
…cts-project#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 and Rosie-Hasan committed Nov 13, 2024
1 parent 0aaa539 commit 00408e0
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 00408e0

Please sign in to comment.