reduce stack size

This commit is contained in:
Irlan
2019-03-31 10:21:53 -03:00
parent 701e4c5b15
commit 725ca3ce31

View File

@ -33,7 +33,7 @@ struct ProfilerNode
float64 t0; float64 t0;
float64 t1; float64 t1;
ProfilerNode* parent; ProfilerNode* parent;
b3StackArray<ProfilerNode*, 256> children; b3StackArray<ProfilerNode*, 32> children;
}; };
// A single-threaded profiler. // A single-threaded profiler.