We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51c9f2c commit ceb8b9cCopy full SHA for ceb8b9c
lldb/source/Expression/FunctionCaller.cpp
@@ -171,10 +171,8 @@ bool FunctionCaller::WriteFunctionArguments(
171
m_wrapper_args_addrs.push_back(args_addr_ref);
172
} else {
173
// Make sure this is an address that we've already handed out.
174
- if (find(m_wrapper_args_addrs.begin(), m_wrapper_args_addrs.end(),
175
- args_addr_ref) == m_wrapper_args_addrs.end()) {
+ if (!llvm::is_contained(m_wrapper_args_addrs, args_addr_ref))
176
return false;
177
- }
178
}
179
180
// TODO: verify fun_addr needs to be a callable address
0 commit comments