• Yedidya Feldblum's avatar
    to_shared_ptr. · 9b980c75
    Yedidya Feldblum authored
    Summary: [Folly] to_shared_ptr.
    
    So you can write this:
    
        auto sptr = to_shared_ptr(getSomethingUnique<T>());
    
    Instead of this:
    
        auto sptr = shared_ptr<T>(getSomethingUnique<T>());
    
    Useful when `T` is long, such as `T = foobar::cpp2::FooBarServiceAsyncClient`.
    
    Reviewed By: @meyering
    
    Differential Revision: D2193572
    9b980c75
Memory.h 10.1 KB