Skip to content

Commit 6488202

Browse files
committed
Address review comments
1 parent 32adf05 commit 6488202

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cloud/examples/cloud_dump.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ int main() {
9292

9393
// verify that the data is somewhat sane by manaully scanning for cfs
9494
std::vector<std::string> cf_names;
95-
s = rocksdb::DB::ListColumnFamilies(options, kDBPath, &cf_names);
96-
for (std::string cf : cf_names) {
95+
s = ROCKSDB_NAMESPACE::DB::ListColumnFamilies(options, kDBPath, &cf_names);
96+
for (const std::string & cf : cf_names) {
9797
std::cout << " Found Column Family " << cf;
9898
}
9999
std::cout << " \n";

0 commit comments

Comments
 (0)