diff --git a/src/quic/defs.h b/src/quic/defs.h index 7db7a7826ce8bb..3dbdd7ee25eba8 100644 --- a/src/quic/defs.h +++ b/src/quic/defs.h @@ -39,8 +39,7 @@ bool SetOption(Environment* env, if (!lossless) { Utf8Value label(env->isolate(), name); THROW_ERR_OUT_OF_RANGE( - env, - ("options." + label.ToString() + " is out of range").c_str()); + env, ("options." + label.ToString() + " is out of range").c_str()); return false; } } else { diff --git a/src/quic/transportparams.h b/src/quic/transportparams.h index 329b31f24bc9b5..7808b1b6c189d2 100644 --- a/src/quic/transportparams.h +++ b/src/quic/transportparams.h @@ -51,8 +51,8 @@ class TransportParams final { // address and port that the server would prefer the client to use when // communicating with it. See the QUIC specification for more detail on how // the preferred address mechanism works. - std::optional preferred_address_ipv4 {}; - std::optional preferred_address_ipv6 {}; + std::optional preferred_address_ipv4{}; + std::optional preferred_address_ipv6{}; // The initial size of the flow control window of locally initiated streams. // This is the maximum number of bytes that the *remote* endpoint can send