From 138a8eee8e50c888886f798c0e680ec2c67f0263 Mon Sep 17 00:00:00 2001 From: Igor Canadi Date: Thu, 31 Oct 2013 11:47:22 -0700 Subject: [PATCH] Fix make release Summary: Don't define if already defined. Test Plan: Running make release in parallel, will not commit if it fails. Reviewers: emayanke Reviewed By: emayanke CC: leveldb Differential Revision: https://reviews.facebook.net/D13833 --- tools/blob_store_bench.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/blob_store_bench.cc b/tools/blob_store_bench.cc index 6bedcb06f..70ece2c5f 100644 --- a/tools/blob_store_bench.cc +++ b/tools/blob_store_bench.cc @@ -11,7 +11,9 @@ // BlobStore does costly asserts to make sure it's running correctly, which // significantly impacts benchmark runtime. // NDEBUG will compile out those asserts. +#ifndef NDEBUG #define NDEBUG +#endif using namespace rocksdb; using namespace std;