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 581f70e commit 1e84124Copy full SHA for 1e84124
c-dependencies/js-compute-runtime/builtins/backend.cpp
@@ -273,7 +273,7 @@ class OpenSSLCipherConfigurationParser {
273
void remove(const AliasMap &aliases, std::vector<Cipher> &ciphers, std::string_view alias) const {
274
auto &toRemove = aliases.at(alias);
275
ciphers.erase(std::remove_if(ciphers.begin(), ciphers.end(),
276
- [&](auto x) {
+ [&](auto &x) {
277
return std::find(toRemove.begin(), toRemove.end(), x) !=
278
toRemove.end();
279
}),
0 commit comments