From 48678b3bd7d1e6fded75e9f5a90b668c18521914 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Tue, 5 Dec 2017 22:34:48 +0100 Subject: [PATCH] Drop bitfield usage. --- server/TracyEvent.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/TracyEvent.hpp b/server/TracyEvent.hpp index 2c5c3c98..e0a54e4d 100644 --- a/server/TracyEvent.hpp +++ b/server/TracyEvent.hpp @@ -106,9 +106,9 @@ struct LockEvent int64_t time; int32_t srcloc; uint64_t waitList; - uint16_t thread : 6; - uint16_t lockingThread : 6; - uint16_t type : 2; + uint8_t thread; + uint8_t lockingThread; + uint8_t type; uint8_t lockCount; };