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 --- lowlevelilinstruction.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lowlevelilinstruction.h') diff --git a/lowlevelilinstruction.h b/lowlevelilinstruction.h index dd416e90..b9a31798 100644 --- a/lowlevelilinstruction.h +++ b/lowlevelilinstruction.h @@ -2026,7 +2026,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