From c1fee6775ff60ef7697780b3fd419af01479a83d Mon Sep 17 00:00:00 2001 From: nitrocaster Date: Fri, 15 Jan 2016 03:11:04 +0300 Subject: [PATCH] Fix StackTraceInfo size constant types. --- src/xrCore/xrDebug.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xrCore/xrDebug.h b/src/xrCore/xrDebug.h index fe2ecfb1efc..048feb38580 100644 --- a/src/xrCore/xrDebug.h +++ b/src/xrCore/xrDebug.h @@ -3,8 +3,8 @@ struct StackTraceInfo { - static const int Capacity = 100; - static const int LineCapacity = 256; + static const size_t Capacity = 100; + static const size_t LineCapacity = 256; char Frames[Capacity*LineCapacity]; size_t Count;