summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThiago Marcos P. Santos <tmpsantos@gmail.com>2019-09-04 00:45:20 +0300
committerThiago Marcos P. Santos <tmpsantos@gmail.com>2019-09-05 13:29:00 +0300
commitef704de47a2c40d253b03e2f663b346c29583c6f (patch)
tree9a70977346e7007e5a0d905802b9cc548c99c02d
parent65b4253ffc2f072bc4e557dd62ea300cb35ed234 (diff)
downloadqtlocation-mapboxgl-ef704de47a2c40d253b03e2f663b346c29583c6f.tar.gz
[build] Do not override new/delete on render-test for sanitize builds
Sanitizers will also do the same and it will conflict.
-rw-r--r--render-test/main.cpp2
1 files changed, 2 insertions, 0 deletions
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;