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 --- highlevelilinstruction.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'highlevelilinstruction.h') diff --git a/highlevelilinstruction.h b/highlevelilinstruction.h index 25c639ec..f962226e 100644 --- a/highlevelilinstruction.h +++ b/highlevelilinstruction.h @@ -1448,7 +1448,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