@@ -369,8 +369,9 @@ inline unsigned char to_lower(int c) {
369
369
370
370
inline bool equal (const std::string &a, const std::string &b) {
371
371
return a.size () == b.size () &&
372
- std::equal (a.begin (), a.end (), b.begin (),
373
- [](char ca, char cb) { return to_lower (ca) == to_lower (cb); });
372
+ std::equal (a.begin (), a.end (), b.begin (), [](char ca, char cb) {
373
+ return to_lower (ca) == to_lower (cb);
374
+ });
374
375
}
375
376
376
377
struct equal_to {
@@ -2900,9 +2901,7 @@ inline void stream_line_reader::append(char c) {
2900
2901
}
2901
2902
}
2902
2903
2903
- inline mmap::mmap (const char *path) {
2904
- open (path);
2905
- }
2904
+ inline mmap::mmap (const char *path) { open (path); }
2906
2905
2907
2906
inline mmap::~mmap () { close (); }
2908
2907
@@ -9492,8 +9491,8 @@ SSLClient::verify_host_with_subject_alt_name(X509 *server_cert) const {
9492
9491
9493
9492
auto type = GEN_DNS;
9494
9493
9495
- struct in6_addr addr6{};
9496
- struct in_addr addr{};
9494
+ struct in6_addr addr6{};
9495
+ struct in_addr addr{};
9497
9496
size_t addr_len = 0 ;
9498
9497
9499
9498
#ifndef __MINGW32__
0 commit comments