From 63c99ae2ffb7c85a7675eb967134714553f198d0 Mon Sep 17 00:00:00 2001 From: Zeb Burke-Conte Date: Mon, 27 Jan 2025 17:05:49 -0800 Subject: [PATCH] Mark functions as inline when constexpr not available --- rapidfuzz/details/config.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rapidfuzz/details/config.hpp b/rapidfuzz/details/config.hpp index 8196b3e1..cf116380 100644 --- a/rapidfuzz/details/config.hpp +++ b/rapidfuzz/details/config.hpp @@ -15,5 +15,5 @@ #if ((defined(_MSVC_LANG) && _MSVC_LANG >= 201402L) || __cplusplus >= 201402L) # define RAPIDFUZZ_CONSTEXPR_CXX14 constexpr #else -# define RAPIDFUZZ_CONSTEXPR_CXX14 +# define RAPIDFUZZ_CONSTEXPR_CXX14 inline #endif