We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee4fc36 commit 400a9acCopy full SHA for 400a9ac
1 file changed
src/utki/utility.hpp
@@ -110,6 +110,10 @@ iterator_type prev(iterator_type iter, size_t n)
110
*/
111
// TODO: for C++20 write concept constraints to only allow contiguous containers
112
template <typename contiguous_type>
113
+#if CFG_CPP >= 20
114
+// TODO: uncomment when utki::span::iterator satisfies the std::contiguous_iterator concept
115
+// requires std::contiguous_iterator<typename contiguous_type::iterator>
116
+#endif
117
// NOLINTNEXTLINE(cppcoreguidelines-missing-std-forward, "")
118
decltype(std::declval<contiguous_type>().data()) end_pointer(contiguous_type&& contiguous_container)
119
{
0 commit comments