We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d6cbc3 commit 52040b4Copy full SHA for 52040b4
llvm/include/llvm/ADT/ArrayRef.h
@@ -328,11 +328,6 @@ namespace llvm {
328
void>>
329
/*implicit*/ constexpr MutableArrayRef(const C &V) : ArrayRef<T>(V) {}
330
331
- /// Construct a MutableArrayRef from a std::array
332
- template <size_t N>
333
- /*implicit*/ constexpr MutableArrayRef(std::array<T, N> &Arr)
334
- : ArrayRef<T>(Arr) {}
335
-
336
/// Construct a MutableArrayRef from a C array.
337
template <size_t N>
338
/*implicit*/ constexpr MutableArrayRef(T (&Arr)[N]) : ArrayRef<T>(Arr) {}
0 commit comments