summaryrefslogtreecommitdiff
path: root/lowlevelilinstruction.h
diff options
context:
space:
mode:
authorJosh Ferrell <josh@vector35.com>2024-12-04 15:05:08 -0500
committerJosh Ferrell <josh@vector35.com>2024-12-16 15:16:49 -0500
commit6d93e8319411fca2c0d67e7ab29d135f5348328c (patch)
treec5d61e2084eb251673006fc72cbe8346e0636931 /lowlevelilinstruction.h
parent8ea98cab89afb0c14073141f30203486d1333b07 (diff)
Update dependencies and fix compilation errors/warnings for g++14 and c++20
Diffstat (limited to 'lowlevelilinstruction.h')
-rw-r--r--lowlevelilinstruction.h2
1 files changed, 1 insertions, 1 deletions
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<IL_INS_NS::LowLevelILInstruction>
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;
}
};