From 99103c96c740ee82c44bbc93bc33a74d22bfbb76 Mon Sep 17 00:00:00 2001 From: Enrico Seiler Date: Sat, 11 Nov 2023 12:12:06 +0100 Subject: [PATCH] [FIX] std::result_of_t deprecated since c++17, removed in c++20 --- include/seqan3/io/views/detail/take_until_view.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/seqan3/io/views/detail/take_until_view.hpp b/include/seqan3/io/views/detail/take_until_view.hpp index 7e4a36abb5..f4a28a9cd9 100644 --- a/include/seqan3/io/views/detail/take_until_view.hpp +++ b/include/seqan3/io/views/detail/take_until_view.hpp @@ -54,7 +54,7 @@ class view_take_until : public std::ranges::view_interface>, "The functor type for detail::take_until must model" "std::invocable>."); - static_assert(std::convertible_to)>, bool>, + static_assert(std::convertible_to>, bool>, "The result type of the functor for detail::take_until must be a boolean."); //!\brief The underlying range.