• S
    Update all unique/shared_ptr instances to be qualified with namespace std (#4638) · dc352807
    Sagar Vemuri 提交于
    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
    dc352807
table_cache.cc 17.5 KB