From 6d93e8319411fca2c0d67e7ab29d135f5348328c Mon Sep 17 00:00:00 2001 From: Josh Ferrell Date: Wed, 4 Dec 2024 15:05:08 -0500 Subject: Update dependencies and fix compilation errors/warnings for g++14 and c++20 --- mediumlevelilinstruction.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mediumlevelilinstruction.h') diff --git a/mediumlevelilinstruction.h b/mediumlevelilinstruction.h index b9745177..018f9ffc 100644 --- a/mediumlevelilinstruction.h +++ b/mediumlevelilinstruction.h @@ -1729,7 +1729,7 @@ template<> struct fmt::formatter auto it = ctx.begin(), end = ctx.end(); if (it != end && *it == '?') presentation = *it++; - if (it != end && *it != '}') detail::throw_format_error("invalid format"); + if (it != end && *it != '}') report_error("invalid format"); return it; } }; -- cgit v1.3.1