rocksdb/memtable
Sagar Vemuri dc3528077a Update all unique/shared_ptr instances to be qualified with namespace std (#4638)
Summary:
Ran the following commands to recursively change all the files under RocksDB:
```
find . -type f -name "*.cc" -exec sed -i 's/ unique_ptr/ std::unique_ptr/g' {} +
find . -type f -name "*.cc" -exec sed -i 's/<unique_ptr/<std::unique_ptr/g' {} +
find . -type f -name "*.cc" -exec sed -i 's/ shared_ptr/ std::shared_ptr/g' {} +
find . -type f -name "*.cc" -exec sed -i 's/<shared_ptr/<std::shared_ptr/g' {} +
```
Running `make format` updated some formatting on the files touched.
Pull Request resolved: https://github.com/facebook/rocksdb/pull/4638

Differential Revision: D12934992

Pulled By: sagar0

fbshipit-source-id: 45a15d23c230cdd64c08f9c0243e5183934338a8
2018-11-09 11:19:58 -08:00
..
alloc_tracker.cc Change RocksDB License 2017-07-15 16:11:23 -07:00
hash_cuckoo_rep.cc Suppress clang analyzer error (#4299) 2018-08-21 16:43:05 -07:00
hash_cuckoo_rep.h Change RocksDB License 2017-07-15 16:11:23 -07:00
hash_linklist_rep.cc Comment out unused variables 2018-03-05 13:13:41 -08:00
hash_linklist_rep.h Change RocksDB License 2017-07-15 16:11:23 -07:00
hash_skiplist_rep.cc Update all unique/shared_ptr instances to be qualified with namespace std (#4638) 2018-11-09 11:19:58 -08:00
hash_skiplist_rep.h Change RocksDB License 2017-07-15 16:11:23 -07:00
inlineskiplist_test.cc Remove tests from ROCKSDB_VALGRIND_RUN 2018-05-30 16:15:16 -07:00
inlineskiplist.h Reorder field based on esan data 2018-05-17 17:57:48 -07:00
memtablerep_bench.cc comment unused parameters to turn on -Wunused-parameter flag 2018-04-12 17:59:16 -07:00
skiplist_test.cc Introduce bottom-pri thread pool for large universal compactions 2017-08-03 15:43:29 -07:00
skiplist.h Enable MSVC W4 with a few exceptions. Fix warnings and bugs 2017-10-19 10:57:12 -07:00
skiplistrep.cc Comment out unused variables 2018-03-05 13:13:41 -08:00
stl_wrappers.h Change RocksDB License 2017-07-15 16:11:23 -07:00
vectorrep.cc Comment out unused variables 2018-03-05 13:13:41 -08:00
write_buffer_manager_test.cc Change RocksDB License 2017-07-15 16:11:23 -07:00
write_buffer_manager.cc Small issues (#4564) 2018-10-23 10:35:57 -07:00