summaryrefslogtreecommitdiffstats
path: root/yql/essentials/minikql/comp_nodes/mkql_enumerate.cpp
diff options
context:
space:
mode:
authoratarasov5 <[email protected]>2025-03-24 12:44:03 +0300
committeratarasov5 <[email protected]>2025-03-24 12:57:18 +0300
commit39ea455c99db12684cf4ba10185e6961851231b8 (patch)
tree612b3077beb5127b48dd91b1ad13f3f0d23ac9b2 /yql/essentials/minikql/comp_nodes/mkql_enumerate.cpp
parent71f6767025c7a8ac0fe7c9c45556faf1d7f7391c (diff)
YQL-19520: msan + codegen = <3
commit_hash:9a814af3b8bd51c53939aa6ffde2e981ad8ea150
Diffstat (limited to 'yql/essentials/minikql/comp_nodes/mkql_enumerate.cpp')
-rw-r--r--yql/essentials/minikql/comp_nodes/mkql_enumerate.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/yql/essentials/minikql/comp_nodes/mkql_enumerate.cpp b/yql/essentials/minikql/comp_nodes/mkql_enumerate.cpp
index 61887fe000e..31ef5761c65 100644
--- a/yql/essentials/minikql/comp_nodes/mkql_enumerate.cpp
+++ b/yql/essentials/minikql/comp_nodes/mkql_enumerate.cpp
@@ -129,7 +129,7 @@ public:
const auto start = GetterFor<ui64>(startv, context, block);
const auto step = GetterFor<ui64>(stepv, context, block);
- const auto func = ConstantInt::get(Type::getInt64Ty(context), GetMethodPtr(&TEnumerateWrapper::WrapList));
+ const auto func = ConstantInt::get(Type::getInt64Ty(context), GetMethodPtr<&TEnumerateWrapper::WrapList>());
const auto ptrType = PointerType::getUnqual(StructType::get(context));
const auto self = CastInst::Create(Instruction::IntToPtr, ConstantInt::get(Type::getInt64Ty(context), uintptr_t(this)), ptrType, "self", block);