diff options
Diffstat (limited to 'contrib/llvm-project/libcxx/include/__fwd/span.h')
-rw-r--r-- | contrib/llvm-project/libcxx/include/__fwd/span.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/llvm-project/libcxx/include/__fwd/span.h b/contrib/llvm-project/libcxx/include/__fwd/span.h index e9fa70382f59..8dafa742c19d 100644 --- a/contrib/llvm-project/libcxx/include/__fwd/span.h +++ b/contrib/llvm-project/libcxx/include/__fwd/span.h @@ -26,7 +26,8 @@ _LIBCPP_BEGIN_NAMESPACE_STD #if _LIBCPP_STD_VER >= 20 inline constexpr size_t dynamic_extent = numeric_limits<size_t>::max(); -template <typename _Tp, size_t _Extent = dynamic_extent> class span; +template <typename _Tp, size_t _Extent = dynamic_extent> +class span; #endif |