summaryrefslogtreecommitdiff
path: root/lib/stream_support.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/stream_support.cpp')
-rw-r--r--lib/stream_support.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/stream_support.cpp b/lib/stream_support.cpp
deleted file mode 100644
index 2054873..0000000
--- a/lib/stream_support.cpp
+++ /dev/null
@@ -1,11 +0,0 @@
-#include "stream_support.hpp"
-
-#include <array>
-#include <vector>
-
-static_assert(spanable<std::vector<int>>);
-// static_assert(spanable<std::vector<char>>);
-static_assert(spanable<std::array<int, 1>>);
-// static_assert(spanable<std::array<char, 1>>);
-static_assert(!spanable<std::string>);
-static_assert(!spanable<std::string_view>);