We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d69f663 commit e23ee96Copy full SHA for e23ee96
ydb/library/yql/udfs/common/ip_base/lib/ip_base_udf.h
@@ -196,8 +196,8 @@ namespace {
196
return range;
197
}
198
199
- TMaybe<TString> SerializeAddress(const TIpv6Address& addr) {
200
- Y_ENSURE(addr.Type() == TIpv6Address::Ipv4 || addr.Type() == TIpv6Address::Ipv6);
+ TString SerializeAddress(const TIpv6Address& addr) {
+ Y_ENSURE(addr.Type() == TIpv6Address::Ipv4 || addr.Type() == TIpv6Address::Ipv6);
201
TString res;
202
if (addr.Type() == TIpv6Address::Ipv4) {
203
auto addr4 = TRawIp4::FromIpAddress(addr);
0 commit comments