From 103ff33f21bdfb0b83d67b2b01a0a3968e7eebac Mon Sep 17 00:00:00 2001 From: ado Date: Tue, 25 Jul 2023 11:13:32 +0200 Subject: [PATCH 01/25] Update ssp.hpp to handle issue fixed in the previous commit --- include/ss/setup.hpp | 6 +++--- ssp.hpp | 14 +++++++++----- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/include/ss/setup.hpp b/include/ss/setup.hpp index 62da91b..17d8399 100644 --- a/include/ss/setup.hpp +++ b/include/ss/setup.hpp @@ -109,10 +109,10 @@ struct get_matcher { struct is_matcher : is_instance_of_matcher {}; static_assert(count_v <= 1, - "the same matcher is cannot" + "the same matcher cannot" "be defined multiple times"); using type = std::conditional_t::value, T, - typename get_matcher::type>; + typename get_matcher::type>; }; template