From b36b1b60650d0ed4e145415e11407e4761af0939 Mon Sep 17 00:00:00 2001 From: Stuart Miller Date: Mon, 22 Jan 2024 08:40:15 -0600 Subject: [PATCH] Revert StringFormat noexcept changes from 00620a9 for GCC <= 9. --- include/mav/utils.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/mav/utils.h b/include/mav/utils.h index 2f420cf..fc7cf8e 100644 --- a/include/mav/utils.h +++ b/include/mav/utils.h @@ -116,7 +116,9 @@ namespace mav { static constexpr formatEndType end{}; static constexpr formatEndType toString{}; +#if __GNUC__ > 9 StringFormat() noexcept = default; +#endif template StringFormat& operator<< (const T &value) noexcept {