From e057461dd5e4c9cb2af9ef8501193803e8949c55 Mon Sep 17 00:00:00 2001 From: Sergei Date: Wed, 29 Jan 2025 16:52:24 +0200 Subject: [PATCH] Arduino strings defines an F macro for flash strings. (#19) --- c++/cavl.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/c++/cavl.hpp b/c++/cavl.hpp index f64132b..595483a 100644 --- a/c++/cavl.hpp +++ b/c++/cavl.hpp @@ -63,12 +63,12 @@ template class Node // NOSONAR cpp:S1448 { // Polyfill for C++17's std::invoke_result_t. - template + template using invoke_result = #if __cplusplus >= 201703L - std::invoke_result_t; + std::invoke_result_t; #else - std::result_of_t; + std::result_of_t; #endif public: