Skip to content

Commit c21a0d9

Browse files
committed
fixed missing constexpr
referenced N3470
1 parent fef2ce3 commit c21a0d9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

reference/array/array/get.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ namespace std {
1616
T&& get(array<T, N>&& x) noexcept; // (2) C++11
1717

1818
template <std::size_t I, class T, std::size_t N>
19-
T&& get(array<T, N>&& x) noexcept; // (2) C++14
19+
constexpr T&& get(array<T, N>&& x) noexcept; // (2) C++14
2020

2121
template <std::size_t I, class T, std::size_t N>
2222
const T& get(const array<T, N>& x) noexcept; // (3) C++11

0 commit comments

Comments
 (0)