#ifndef DLIB_SCOPED_PTr_H_ #define DLIB_SCOPED_PTr_H_ #include namespace dlib { // Template alias for compatibility with clients using old dlib::scoped_ptr // Old scoped_ptr implementation is removed completely // This alias may fail in some reference deduction cases template > using scoped_ptr = std::unique_ptr; } #endif