Skip to content

Commit 1e84124

Browse files
Update c-dependencies/js-compute-runtime/builtins/backend.cpp
Co-authored-by: Trevor Elliott <[email protected]>
1 parent 581f70e commit 1e84124

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

c-dependencies/js-compute-runtime/builtins/backend.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ class OpenSSLCipherConfigurationParser {
273273
void remove(const AliasMap &aliases, std::vector<Cipher> &ciphers, std::string_view alias) const {
274274
auto &toRemove = aliases.at(alias);
275275
ciphers.erase(std::remove_if(ciphers.begin(), ciphers.end(),
276-
[&](auto x) {
276+
[&](auto &x) {
277277
return std::find(toRemove.begin(), toRemove.end(), x) !=
278278
toRemove.end();
279279
}),

0 commit comments

Comments
 (0)