Skip to content

Commit

Permalink
Fix StackTraceInfo size constant types.
Browse files Browse the repository at this point in the history
  • Loading branch information
nitrocaster committed Jan 15, 2016
1 parent 4723afe commit c1fee67
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/xrCore/xrDebug.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit c1fee67

Please sign in to comment.