Skip to content

Commit 4b74ecb

Browse files
author
galtsev
committed
YT-21993: Fix the return type
commit_hash:dc26d0ae5ce882e160743951aef3d303bdf1050d
1 parent 54c16aa commit 4b74ecb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

yt/yt/core/phoenix/type_def-inl.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -662,13 +662,13 @@ class PHOENIX_REGISTRAR_NODISCARD TVirtualFieldLoadRegistrar
662662
auto SinceVersion(TVersion version) &&
663663
{
664664
MinVersion_ = version;
665-
return TFieldLoadRegistrar(std::move(*this));
665+
return TVirtualFieldLoadRegistrar(std::move(*this));
666666
}
667667

668668
auto BeforeVersion(TVersion version) &&
669669
{
670670
BeforeVersion_ = version;
671-
return TFieldLoadRegistrar(std::move(*this));
671+
return TVirtualFieldLoadRegistrar(std::move(*this));
672672
}
673673

674674
auto WhenMissing(TFieldMissingHandler<TThis, TContext> handler) &&

0 commit comments

Comments
 (0)