blob: 095ee22be888884aa4c77628797bb4bc7fbb6b84 [file] [log] [blame]
#ifdef TESTING
#include "rive/simple_array.hpp"
namespace rive
{
namespace SimpleArrayTesting
{
int mallocCount = 0;
int reallocCount = 0;
int freeCount = 0;
void resetCounters()
{
mallocCount = 0;
reallocCount = 0;
freeCount = 0;
}
} // namespace SimpleArrayTesting
} // namespace rive
#endif