diff options
author | thegeorg <thegeorg@yandex-team.com> | 2024-02-03 18:50:51 +0300 |
---|---|---|
committer | thegeorg <thegeorg@yandex-team.com> | 2024-02-03 19:13:26 +0300 |
commit | 9b516d5636b611494ebbc2627c76aea605b51a41 (patch) | |
tree | 488c6d12625257672a8e16850b882984f3809712 | |
parent | b73ecef2065fe748721c1fa8d65a9f3e9b9e0bf9 (diff) | |
download | ydb-9b516d5636b611494ebbc2627c76aea605b51a41.tar.gz |
Disable ext/ and tr1/ headers resolving
-rw-r--r-- | contrib/restricted/thrift/thrift/stdcxx.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/restricted/thrift/thrift/stdcxx.h b/contrib/restricted/thrift/thrift/stdcxx.h index 3e377daa45..b22fcadb5d 100644 --- a/contrib/restricted/thrift/thrift/stdcxx.h +++ b/contrib/restricted/thrift/thrift/stdcxx.h @@ -36,9 +36,9 @@ #if defined(BOOST_NO_CXX11_HDR_FUNCTIONAL) || (defined(_MSC_VER) && _MSC_VER < 1800) || defined(FORCE_BOOST_FUNCTIONAL) #if (BOOST_VERSION <= 106500) -#include <boost/tr1/functional.hpp> // Y_IGNORE +#error #include <boost/tr1/functional.hpp> #else -#include <tr1/functional> +#error #include <tr1/functional> #endif #define _THRIFT_FUNCTIONAL_TR1_ 1 #endif |