|
@@ -43,8 +43,8 @@ using namespace std::placeholders;
|
|
|
#if __clang__ && defined(__APPLE__)
|
|
|
namespace {
|
|
|
template <typename To, typename From>
|
|
|
-inline shared_ptr<To> reinterpret_pointer_cast(shared_ptr<From> const &ptr) noexcept {
|
|
|
- return shared_ptr<To>(ptr, reinterpret_cast<To *>(ptr.get()));
|
|
|
+inline std::shared_ptr<To> reinterpret_pointer_cast(std::shared_ptr<From> const &ptr) noexcept {
|
|
|
+ return std::shared_ptr<To>(ptr, reinterpret_cast<To *>(ptr.get()));
|
|
|
}
|
|
|
} // namespace
|
|
|
#else
|