diff options
author | halyavin <halyavin@yandex-team.com> | 2022-07-15 17:25:40 +0300 |
---|---|---|
committer | halyavin <halyavin@yandex-team.com> | 2022-07-15 17:25:40 +0300 |
commit | 9d445bb0614662792baefa488b38e1ca78a3dd38 (patch) | |
tree | 73b1d60766bc1cd60fb95f2e6f5daf24533d59be | |
parent | e7e8670e174b345b1d1b21517036c68dfb125779 (diff) | |
download | ydb-9d445bb0614662792baefa488b38e1ca78a3dd38.tar.gz |
Add missing include.
std::copy requires <algorithm> header. This is exposed by new verison of libc++.
-rw-r--r-- | ydb/core/yq/libs/common/util.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ydb/core/yq/libs/common/util.h b/ydb/core/yq/libs/common/util.h index aec53efd76d..e8e78bf3c20 100644 --- a/ydb/core/yq/libs/common/util.h +++ b/ydb/core/yq/libs/common/util.h @@ -1,5 +1,6 @@ #pragma once +#include <algorithm> #include <array> namespace NYq { |