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
main
Igor Canadi 11 years ago
parent f03b2df010
commit 138a8eee8e
  1. 2
      tools/blob_store_bench.cc

@ -11,7 +11,9 @@
// BlobStore does costly asserts to make sure it's running correctly, which // BlobStore does costly asserts to make sure it's running correctly, which
// significantly impacts benchmark runtime. // significantly impacts benchmark runtime.
// NDEBUG will compile out those asserts. // NDEBUG will compile out those asserts.
#ifndef NDEBUG
#define NDEBUG #define NDEBUG
#endif
using namespace rocksdb; using namespace rocksdb;
using namespace std; using namespace std;

Loading…
Cancel
Save