mirror of
https://github.com/RPCS3/llvm.git
synced 2025-05-13 08:56:04 +00:00
Workaround continued bot failures with MDTupleTypedArrayWrapper
Change the explicit constructor to be more specific. I think this will get us past the continued bot failures [1] with older clangs. [1]: http://lab.llvm.org:8080/green/job/clang-stage1-cmake-RA-incremental_build/8203 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@234331 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d9624d4956
commit
05d49df6d8
@ -1079,10 +1079,10 @@ public:
|
|||||||
|
|
||||||
template <class U>
|
template <class U>
|
||||||
explicit MDTupleTypedArrayWrapper(
|
explicit MDTupleTypedArrayWrapper(
|
||||||
const U &Tuple,
|
const MDTupleTypedArrayWrapper<U> &Other,
|
||||||
typename std::enable_if<
|
typename std::enable_if<!std::is_convertible<U *, T *>::value>::type * =
|
||||||
std::is_constructible<const MDTuple *, U>::value>::type * = nullptr)
|
nullptr)
|
||||||
: N(Tuple) {}
|
: N(Other.get()) {}
|
||||||
|
|
||||||
explicit operator bool() const { return get(); }
|
explicit operator bool() const { return get(); }
|
||||||
explicit operator MDTuple *() const { return get(); }
|
explicit operator MDTuple *() const { return get(); }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user