From cf7db48c261ee9c896c813a38ff8c59da5b8fe07 Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Sun, 26 Jan 2025 00:40:51 +0100 Subject: Fix line endings --- asl/span.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'asl/span.hpp') diff --git a/asl/span.hpp b/asl/span.hpp index 730ef71..9ebe022 100644 --- a/asl/span.hpp +++ b/asl/span.hpp @@ -49,7 +49,7 @@ class span { return size < 0; } - + static constexpr bool kIsDynamic = is_dynamic(kSize); using SizeType = select_t; @@ -102,7 +102,7 @@ public: constexpr span(const span&) = default; constexpr span(span&&) = default; - + constexpr span& operator=(const span&) = default; constexpr span& operator=(span&&) = default; @@ -124,7 +124,7 @@ public: { return contiguous_iterator{m_data}; } - + constexpr contiguous_iterator end() const { return contiguous_iterator{m_data + size()}; -- cgit