We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7aa69d4 commit d1b9e2cCopy full SHA for d1b9e2c
AK/IpAddressCidr.h
@@ -117,12 +117,12 @@ struct Formatter<Details::IPAddressCidrError> : Formatter<StringView> {
117
{
118
StringView value;
119
switch (error) {
120
- case Details::IPAddressCidrError::StringParsingFailed:
121
- value = "String parsing failed"sv;
122
- break;
123
- case Details::IPAddressCidrError::CidrTooLong:
124
- value = "CIDR too long"sv;
125
+ case Details::IPAddressCidrError::StringParsingFailed:
+ value = "String parsing failed"sv;
+ break;
+ case Details::IPAddressCidrError::CidrTooLong:
+ value = "CIDR too long"sv;
126
}
127
128
return Formatter<StringView>::format(builder, value);
0 commit comments