Skip to content

Commit 02cbf0f

Browse files
author
Vadim Averin
committed
Post-merge fixes
1 parent 0624fe8 commit 02cbf0f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ydb/library/yql/udfs/common/ip_base/lib/ip_base_udf.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,8 +197,8 @@ namespace {
197197
return range;
198198
}
199199

200-
TMaybe<TString> SerializeAddress(const TIpv6Address& addr) {
201-
Y_ENSURE(addr.Type() == TIpv6Address::Ipv4 || addr.Type() == TIpv6Address::Ipv6);
200+
TString SerializeAddress(const TIpv6Address& addr) {
201+
Y_ENSURE(addr.Type() == TIpv6Address::Ipv4 || addr.Type() == TIpv6Address::Ipv6);
202202
TString res;
203203
if (addr.Type() == TIpv6Address::Ipv4) {
204204
auto addr4 = TRawIp4::FromIpAddress(addr);

0 commit comments

Comments
 (0)