summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--render-test/main.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/render-test/main.cpp b/render-test/main.cpp
index ef9352d21d..46447f5853 100644
--- a/render-test/main.cpp
+++ b/render-test/main.cpp
@@ -1,3 +1,5 @@
+#include "allocation_index.hpp"
+
#include <mbgl/util/run_loop.hpp>
#include <mbgl/util/io.hpp>
@@ -19,6 +21,21 @@
#define ANSI_COLOR_LIGHT_GRAY "\x1b[90m"
#define ANSI_COLOR_RESET "\x1b[0m"
+void* operator new(std::size_t sz) {
+ void* ptr = AllocationIndex::allocate(sz);
+ if (!ptr) throw std::bad_alloc{};
+
+ return ptr;
+}
+
+void operator delete(void* ptr) noexcept {
+ AllocationIndex::deallocate(ptr);
+}
+
+void operator delete(void* ptr, size_t) noexcept {
+ AllocationIndex::deallocate(ptr);
+}
+
namespace {
TestPaths makeTestPaths(mbgl::filesystem::path stylePath) {