From b7b50392edd4fa2de55baeced1a5a5696dfb90a0 Mon Sep 17 00:00:00 2001 From: Jesse Haber-Kucharsky Date: Thu, 21 Feb 2019 10:42:02 -0500 Subject: [PATCH] build: Remove the `DEBUG_SHARED_PTR` pp variable This definition is exported by Seastar as `SEASTAR_DEBUG_SHARED_PTR` and no code in Scylla uses this definition either way. --- configure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.py b/configure.py index 6b25e6f04d..595d146bfc 100755 --- a/configure.py +++ b/configure.py @@ -240,7 +240,7 @@ modes = { 'debug': { 'sanitize': '-fsanitize=address -fsanitize=leak -fsanitize=undefined', 'sanitize_libs': '-lasan -lubsan', - 'opt': '-O0 -DDEBUG -DDEBUG_SHARED_PTR -DDEBUG_LSA_SANITIZER', + 'opt': '-O0 -DDEBUG -DDEBUG_LSA_SANITIZER', 'libs': '', }, 'release': {