From 64d6caf69563ecc7d9554005ecf9747dceb18292 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sat, 22 Feb 2020 18:11:06 +0100 Subject: [PATCH] Add Int24, Int48 natvis. --- profiler/build/win32/DebugVis.natvis | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/profiler/build/win32/DebugVis.natvis b/profiler/build/win32/DebugVis.natvis index f183e403..b4c7c90b 100644 --- a/profiler/build/win32/DebugVis.natvis +++ b/profiler/build/win32/DebugVis.natvis @@ -38,4 +38,10 @@ {{ time={int64_t( _time_other_own ) >> 16} own={uint8_t( _time_other_own >> 8 )} other={uint8_t( _time_other_own )} }} + + {{ value={m_val[0] | (m_val[1]<<8) | (m_val[2]<<16)} }} + + + {{ value={int64_t( uint64_t(m_val[0]) | (uint64_t(m_val[1])<<8) | (uint64_t(m_val[2])<<16) | (uint64_t(m_val[3])<<24) | (uint64_t(m_val[4])<<32) | (uint64_t(m_val[5])<<40) )} }} +