From cbe40b5dba9c7a32e6cd61f50e812ec333ebfbdd Mon Sep 17 00:00:00 2001 From: Andrew Noyes Date: Tue, 2 Jul 2024 12:48:00 -0700 Subject: [PATCH] Fix missing debug verbose guard --- Internal.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Internal.h b/Internal.h index 0d4f791..6380afa 100644 --- a/Internal.h +++ b/Internal.h @@ -658,7 +658,9 @@ template struct TestDriver { assert(iter == keys.end()); assert(i == numPointWrites + numRangeWrites); +#if DEBUG_VERBOSE && !defined(NDEBUG) fprintf(stderr, "Write @ %" PRId64 "\n", v); +#endif CALLGRIND_START_INSTRUMENTATION; cs.addWrites(writes, numPointWrites + numRangeWrites, v);