Skip to content

Commit c1fee67

Browse files
author
nitrocaster
committed
Fix StackTraceInfo size constant types.
1 parent 4723afe commit c1fee67

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/xrCore/xrDebug.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
struct StackTraceInfo
55
{
6-
static const int Capacity = 100;
7-
static const int LineCapacity = 256;
6+
static const size_t Capacity = 100;
7+
static const size_t LineCapacity = 256;
88
char Frames[Capacity*LineCapacity];
99
size_t Count;
1010

0 commit comments

Comments
 (0)