aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMikhnenko Sasha <78651190+4JustMe4@users.noreply.github.com>2025-01-13 20:01:43 +0300
committerGitHub <noreply@github.com>2025-01-13 20:01:43 +0300
commitfc474d1ba278418a10604d48266980c0f290f24c (patch)
treefb499d9caea5bd8dc3539af1c3daaa231202cf5e
parent1402e4e6a07f9ba67eadb334ebcdc86f9f4e1fcd (diff)
downloadydb-fc474d1ba278418a10604d48266980c0f290f24c.tar.gz
Add missed include <cstdlib> (#13300)
-rw-r--r--ydb/library/yql/udfs/common/clickhouse/client/base/common/demangle.h1
-rw-r--r--ydb/library/yql/utils/simd/exec/tuples_to_bucket/main.cpp2
2 files changed, 3 insertions, 0 deletions
diff --git a/ydb/library/yql/udfs/common/clickhouse/client/base/common/demangle.h b/ydb/library/yql/udfs/common/clickhouse/client/base/common/demangle.h
index 3c20920ab7c..f2644f0633a 100644
--- a/ydb/library/yql/udfs/common/clickhouse/client/base/common/demangle.h
+++ b/ydb/library/yql/udfs/common/clickhouse/client/base/common/demangle.h
@@ -1,5 +1,6 @@
#pragma once
+#include <cstdlib>
#include <memory>
#include <string>
diff --git a/ydb/library/yql/utils/simd/exec/tuples_to_bucket/main.cpp b/ydb/library/yql/utils/simd/exec/tuples_to_bucket/main.cpp
index be4faa4362f..5158d4d9052 100644
--- a/ydb/library/yql/utils/simd/exec/tuples_to_bucket/main.cpp
+++ b/ydb/library/yql/utils/simd/exec/tuples_to_bucket/main.cpp
@@ -3,6 +3,8 @@
#include <util/system/cpu_id.h>
#include <util/system/types.h>
+#include <cstdlib>
+
#include <ydb/library/yql/utils/simd/simd.h>
struct TPerfomancer {