From 6138978808829172448615980742756831959788 Mon Sep 17 00:00:00 2001 From: Scott Lagler Date: Fri, 12 Dec 2025 19:20:21 -0500 Subject: Add more reserve calls --- highlevelilinstruction.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'highlevelilinstruction.cpp') diff --git a/highlevelilinstruction.cpp b/highlevelilinstruction.cpp index 37504253..af5ae5f8 100644 --- a/highlevelilinstruction.cpp +++ b/highlevelilinstruction.cpp @@ -840,6 +840,7 @@ void HighLevelILInstructionBase::UpdateRawOperandAsExprList( size_t operandIndex, const vector& exprs) { vector exprIndexList; + exprIndexList.reserve(exprs.size()); for (auto& i : exprs) exprIndexList.push_back((ExprId)i.exprIndex); UpdateRawOperand(operandIndex, exprIndexList.size()); -- cgit v1.3.1