From 929bea1858546b298f933badc328a0211b16dac4 Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Sun, 12 Nov 2023 22:57:22 -0600 Subject: [PATCH] Make fmt::exception static inline --- src/fmt.hpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/fmt.hpp b/src/fmt.hpp index a6b971b..ab253f0 100644 --- a/src/fmt.hpp +++ b/src/fmt.hpp @@ -40,6 +40,7 @@ struct fmt::formatter : formatter namespace fmt { static + inline std::runtime_error vexception(fmt::string_view fmt_, fmt::format_args args_) @@ -52,6 +53,8 @@ namespace fmt } template + static + inline std::runtime_error exception(Str const &fmt_, Args &&... args_)