summaryrefslogtreecommitdiff
path: root/lib/stream_support.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/stream_support.h')
-rw-r--r--lib/stream_support.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/stream_support.h b/lib/stream_support.h
index 7fb256c..fa536f1 100644
--- a/lib/stream_support.h
+++ b/lib/stream_support.h
@@ -11,8 +11,8 @@
template<typename S>
concept stringlike = requires(const S & s) { s.substr(0); };
template<typename T>
-concept spanable = std::is_constructible_v<std::span<const typename T::value_type>, T> && !
-stringlike<T> && !std::is_same_v<std::span<typename T::value_type>, T>;
+concept spanable = std::is_constructible_v<std::span<const typename T::value_type>, T> && !stringlike<T>
+ && !std::is_same_v<std::span<typename T::value_type>, T>;
namespace std {
template<typename T, std::size_t L>