The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

a/util: Fix bitwise operation on signed integer warnings

authored by

Ryan Pavlik and committed by
Jakob Bornecrantz
9348130f bdc526b7

+2 -2
+2 -2
src/xrt/auxiliary/util/u_device.h
··· 29 29 { 30 30 // clang-format off 31 31 U_DEVICE_ALLOC_NO_FLAGS = 0, 32 - U_DEVICE_ALLOC_HMD = 1 << 0, 33 - U_DEVICE_ALLOC_TRACKING_NONE = 1 << 1, 32 + U_DEVICE_ALLOC_HMD = 1u << 0u, 33 + U_DEVICE_ALLOC_TRACKING_NONE = 1u << 1u, 34 34 // clang-format on 35 35 }; 36 36