summaryrefslogtreecommitdiff
path: root/highlevelilinstruction.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 /highlevelilinstruction.h
parent8ea98cab89afb0c14073141f30203486d1333b07 (diff)
Update dependencies and fix compilation errors/warnings for g++14 and c++20
Diffstat (limited to 'highlevelilinstruction.h')
-rw-r--r--highlevelilinstruction.h2
1 files changed, 1 insertions, 1 deletions
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<IL_INS_NS::HighLevelILInstruction>
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;
}
};