Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 665590
Collapse All | Expand All

(-)a/pal/shared/gpuopen/inc/util/sharedptr.h (+2 lines)
Lines 191-196 Link Here
191
        // Create SharedPointer object with the default constructor
191
        // Create SharedPointer object with the default constructor
192
        constexpr SharedPointer() : SharedPointerBase() {};
192
        constexpr SharedPointer() : SharedPointerBase() {};
193
193
194
	SharedPointer(const SharedPointer<T> &right) = default;
195
194
        // Copy conversion constructor. Creates a new object if you can cast from type U to type T.
196
        // Copy conversion constructor. Creates a new object if you can cast from type U to type T.
195
        template <typename U, typename = typename Platform::EnableIf<Platform::IsConvertible<U*, T*>::Value>::Type>
197
        template <typename U, typename = typename Platform::EnableIf<Platform::IsConvertible<U*, T*>::Value>::Type>
196
        SharedPointer(const SharedPointer<U> &right)
198
        SharedPointer(const SharedPointer<U> &right)

Return to bug 665590