From d2f7bd5e0aaa51f52fb0785c84c0f28fde84f5a5 Mon Sep 17 00:00:00 2001 From: Johannes Stoelp Date: Mon, 7 Oct 2024 20:59:55 +0200 Subject: minor cleanups --- fn_signature_checker.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'fn_signature_checker.cc') diff --git a/fn_signature_checker.cc b/fn_signature_checker.cc index 985c719..bd1db20 100644 --- a/fn_signature_checker.cc +++ b/fn_signature_checker.cc @@ -55,13 +55,13 @@ void do_work() { // // If the partial specialization (3) is enabled, this could also match a // static member function T::get. - static_assert(std::is_same, fn_t>::value, + static_assert(std::is_same>::value, "T has no member function 'int get(int)'"); // Check for non-static member function. - static_assert(std::is_same, fn_t>::value, + static_assert(std::is_same>::value, "T has no member function 'void set(int)'"); // Check for static member function. - static_assert(std::is_same, fn_t>::value, + static_assert(std::is_same>::value, "T has no static function 'static int cnt()'"); } -- cgit v1.2.3