aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhalyavin <halyavin@yandex-team.com>2022-07-15 17:25:35 +0300
committerhalyavin <halyavin@yandex-team.com>2022-07-15 17:25:35 +0300
commite7e8670e174b345b1d1b21517036c68dfb125779 (patch)
treef22eac080920371ca3997cf3df1058d5ae53c047
parent48398942049975801edffa7309987db284cf0a33 (diff)
downloadydb-e7e8670e174b345b1d1b21517036c68dfb125779.tar.gz
Add missing include.
std::all_of requires <algorithm> header. This is exposed by new version of libc++.
-rw-r--r--ydb/library/yql/udfs/common/clickhouse/client/src/Common/StringUtils/StringUtils.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/ydb/library/yql/udfs/common/clickhouse/client/src/Common/StringUtils/StringUtils.h b/ydb/library/yql/udfs/common/clickhouse/client/src/Common/StringUtils/StringUtils.h
index 38132a22f89..c0223315c41 100644
--- a/ydb/library/yql/udfs/common/clickhouse/client/src/Common/StringUtils/StringUtils.h
+++ b/ydb/library/yql/udfs/common/clickhouse/client/src/Common/StringUtils/StringUtils.h
@@ -1,5 +1,6 @@
#pragma once
+#include <algorithm>
#include <string>
#include <cstring>
#include <cstddef>