diff options
author | thegeorg <thegeorg@yandex-team.com> | 2022-10-11 20:50:09 +0300 |
---|---|---|
committer | thegeorg <thegeorg@yandex-team.com> | 2022-10-11 20:50:09 +0300 |
commit | 8b173d7c1ab66c8c90d80d2e690f9be47b2db5d5 (patch) | |
tree | 9c9266df6a0d1a179e1c949190f4161ff4d96049 | |
parent | 4c80efaf452fc0c4a0288f2863f9c4b5fdb9052d (diff) | |
download | ydb-8b173d7c1ab66c8c90d80d2e690f9be47b2db5d5.tar.gz |
Drop abseil patch as std::bind_front works now
-rw-r--r-- | contrib/restricted/abseil-cpp-tstring/y_absl/functional/bind_front.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/restricted/abseil-cpp-tstring/y_absl/functional/bind_front.h b/contrib/restricted/abseil-cpp-tstring/y_absl/functional/bind_front.h index e828c79aa76..087872d0f96 100644 --- a/contrib/restricted/abseil-cpp-tstring/y_absl/functional/bind_front.h +++ b/contrib/restricted/abseil-cpp-tstring/y_absl/functional/bind_front.h @@ -175,7 +175,7 @@ Y_ABSL_NAMESPACE_BEGIN // // Doesn't copy "hi". // y_absl::bind_front(Print, y_absl::string_view(hi))("Chuk"); // -#if 0 +#if defined(__cpp_lib_bind_front) && __cpp_lib_bind_front >= 201907L using std::bind_front; #else // defined(__cpp_lib_bind_front) && __cpp_lib_bind_front >= 201907L template <class F, class... BoundArgs> |