Skip to content

Commit 581f70e

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

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
@@ -592,7 +592,7 @@ class OpenSSLCipherConfigurationParser {
592592
}
593593
// Remove all ciphers from `ciphers` which are contained in `removedCiphers`
594594
ciphers.erase(std::remove_if(ciphers.begin(), ciphers.end(),
595-
[&removedCiphers](Cipher c) {
595+
[&removedCiphers](auto &c) {
596596
return std::find(removedCiphers.begin(), removedCiphers.end(),
597597
c) != removedCiphers.end();
598598
}),

0 commit comments

Comments
 (0)