Skip to content

Commit c8b81d9

Browse files
authored
Disable bitfield constant conversion warnings in Bullet (#17627)
After https://reviews.llvm.org/D131255 clang warns about signed bitfield conversions in Bullet. Disable the warning to allow Bullet to continue building.
1 parent 524ab1f commit c8b81d9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/test_core.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6760,7 +6760,8 @@ def test_bullet(self, use_cmake):
67606760
'-Wno-deprecated-register',
67616761
'-Wno-writable-strings',
67626762
'-Wno-shift-negative-value',
6763-
'-Wno-format'
6763+
'-Wno-format',
6764+
'-Wno-bitfield-constant-conversion',
67646765
]
67656766

67666767
# extra testing for ASSERTIONS == 2

0 commit comments

Comments
 (0)