From f604280812d44146ce1a1c8c1ae92a062c286274 Mon Sep 17 00:00:00 2001 From: "Thiago Marcos P. Santos" Date: Wed, 4 Sep 2019 00:45:20 +0300 Subject: [build] Do not override new/delete on render-test for sanitize builds Sanitizers will also do the same and it will conflict. --- render-test/main.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'render-test') diff --git a/render-test/main.cpp b/render-test/main.cpp index 3ab48fe5b2..fcdbe3ab55 100644 --- a/render-test/main.cpp +++ b/render-test/main.cpp @@ -19,6 +19,7 @@ #define ANSI_COLOR_LIGHT_GRAY "\x1b[90m" #define ANSI_COLOR_RESET "\x1b[0m" +#if !defined(SANITIZE) void* operator new(std::size_t sz) { void* ptr = AllocationIndex::allocate(sz); if (!ptr) throw std::bad_alloc{}; @@ -33,6 +34,7 @@ void operator delete(void* ptr) noexcept { void operator delete(void* ptr, size_t) noexcept { AllocationIndex::deallocate(ptr); } +#endif int main(int argc, char** argv) { bool recycleMap; -- cgit v1.2.1