summaryrefslogtreecommitdiff
path: root/memtable/hash_linklist_rep.h
diff options
context:
space:
mode:
authorsdong <siying.d@fb.com>2020-02-20 12:07:53 -0800
committerFacebook Github Bot <facebook-github-bot@users.noreply.github.com>2020-02-20 12:09:57 -0800
commitfdf882ded218344c136c97daf76dfb59e4bc155f (patch)
tree00237d163251ff53a7fe8cb7fbd5d7462fbc9e32 /memtable/hash_linklist_rep.h
parent4e33f1e1dc40be18f8233a913324b2978c6a46fa (diff)
Replace namespace name "rocksdb" with ROCKSDB_NAMESPACE (#6433)
Summary: When dynamically linking two binaries together, different builds of RocksDB from two sources might cause errors. To provide a tool for user to solve the problem, the RocksDB namespace is changed to a flag which can be overridden in build time. Pull Request resolved: https://github.com/facebook/rocksdb/pull/6433 Test Plan: Build release, all and jtest. Try to build with ROCKSDB_NAMESPACE with another flag. Differential Revision: D19977691 fbshipit-source-id: aa7f2d0972e1c31d75339ac48478f34f6cfcfb3e
Diffstat (limited to 'memtable/hash_linklist_rep.h')
-rw-r--r--memtable/hash_linklist_rep.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/memtable/hash_linklist_rep.h b/memtable/hash_linklist_rep.h
index a6da3eedd..7e7195526 100644
--- a/memtable/hash_linklist_rep.h
+++ b/memtable/hash_linklist_rep.h
@@ -11,7 +11,7 @@
#include "rocksdb/slice_transform.h"
#include "rocksdb/memtablerep.h"
-namespace rocksdb {
+namespace ROCKSDB_NAMESPACE {
class HashLinkListRepFactory : public MemTableRepFactory {
public:
@@ -45,5 +45,5 @@ class HashLinkListRepFactory : public MemTableRepFactory {
bool if_log_bucket_dist_when_flash_;
};
-}
+} // namespace ROCKSDB_NAMESPACE
#endif // ROCKSDB_LITE