Skip to content

Commit b541f9f

Browse files
committed
Fix namespace
1 parent 03809ee commit b541f9f

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

include/rocksdb/cloud/cloud_env_options.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ struct ClientConfiguration;
1717
} // namespace Client
1818
} // namespace Aws
1919

20-
namespace rocksdb {
20+
namespace ROCKSDB_NAMESPACE {
2121

2222
class CloudEnv;
2323
class CloudLogController;
@@ -469,4 +469,4 @@ class CloudEnv : public Env {
469469
CloudEnv** cenv);
470470
};
471471

472-
} // namespace rocksdb
472+
} // namespace ROCKSDB_NAMESPACE

include/rocksdb/cloud/cloud_log_controller.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#include "rocksdb/env.h"
88
#include "rocksdb/status.h"
99

10-
namespace rocksdb {
10+
namespace ROCKSDB_NAMESPACE {
1111
class CloudEnv;
1212
class CloudEnvOptions;
1313

@@ -89,4 +89,4 @@ class CloudLogController {
8989
virtual Status Prepare(CloudEnv* env) = 0;
9090
};
9191

92-
} // namespace rocksdb
92+
} // namespace ROCKSDB_NAMESPACE

include/rocksdb/cloud/cloud_storage_provider.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#include "rocksdb/env.h"
88
#include "rocksdb/status.h"
99

10-
namespace rocksdb {
10+
namespace ROCKSDB_NAMESPACE {
1111
class CloudEnv;
1212
class CloudStorageProvider;
1313
class Logger;
@@ -113,4 +113,4 @@ class CloudStorageProvider {
113113
// Prepares/Initializes the storage provider for the input cloud environment
114114
virtual Status Prepare(CloudEnv* env);
115115
};
116-
} // namespace rocksdb
116+
} // namespace ROCKSDB_NAMESPACE

include/rocksdb/cloud/db_cloud.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#include "rocksdb/db.h"
1111
#include "rocksdb/utilities/stackable_db.h"
1212

13-
namespace rocksdb {
13+
namespace ROCKSDB_NAMESPACE {
1414

1515
//
1616
// Database with Cloud support.
@@ -68,5 +68,5 @@ class DBCloud : public StackableDB {
6868
explicit DBCloud(DB* db) : StackableDB(db) {}
6969
};
7070

71-
} // namespace rocksdb
71+
} // namespace ROCKSDB_NAMESPACE
7272
#endif // ROCKSDB_LITE

0 commit comments

Comments
 (0)