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 4861931 commit 581f70eCopy full SHA for 581f70e
c-dependencies/js-compute-runtime/builtins/backend.cpp
@@ -592,7 +592,7 @@ class OpenSSLCipherConfigurationParser {
592
}
593
// Remove all ciphers from `ciphers` which are contained in `removedCiphers`
594
ciphers.erase(std::remove_if(ciphers.begin(), ciphers.end(),
595
- [&removedCiphers](Cipher c) {
+ [&removedCiphers](auto &c) {
596
return std::find(removedCiphers.begin(), removedCiphers.end(),
597
c) != removedCiphers.end();
598
}),
0 commit comments