diff options
author | thegeorg <thegeorg@yandex-team.com> | 2024-12-24 07:15:17 +0300 |
---|---|---|
committer | thegeorg <thegeorg@yandex-team.com> | 2024-12-24 07:34:49 +0300 |
commit | 5c3c08504a89a9dc3204f848dc7916deccafb410 (patch) | |
tree | 1a8d984e5ac3309929692d88201447cd891b6d25 /contrib/restricted/boost/regex/src | |
parent | c9ef3807b5fc61b41b2503ecb2c2547223a04046 (diff) | |
download | ydb-5c3c08504a89a9dc3204f848dc7916deccafb410.tar.gz |
Remove boost/regex/v4
v4 is a pre-c++11 implementation which is not used by anyone.
Remove it completely and avoid adding multiple excessive peerdirs (actually, respect dependencies listed in CMakeLists.txt from upstream).
commit_hash:0d5c0c5c2a38ccc5e5eeeb5afbc976316178d531
Diffstat (limited to 'contrib/restricted/boost/regex/src')
4 files changed, 4 insertions, 4 deletions
diff --git a/contrib/restricted/boost/regex/src/posix_api.cpp b/contrib/restricted/boost/regex/src/posix_api.cpp index e30f9d8e1e..59f16ebcca 100644 --- a/contrib/restricted/boost/regex/src/posix_api.cpp +++ b/contrib/restricted/boost/regex/src/posix_api.cpp @@ -27,7 +27,7 @@ #endif #ifndef BOOST_REGEX_STANDALONE -#include <boost/core/snprintf.hpp> +#error #include <boost/core/snprintf.hpp> #else namespace boost { namespace core { using std::snprintf; } } #endif diff --git a/contrib/restricted/boost/regex/src/regex.cpp b/contrib/restricted/boost/regex/src/regex.cpp index 2d9239553c..8c251f60e1 100644 --- a/contrib/restricted/boost/regex/src/regex.cpp +++ b/contrib/restricted/boost/regex/src/regex.cpp @@ -36,7 +36,7 @@ #include <windows.h> #include <stdexcept> #include <boost/regex/pattern_except.hpp> -#include <boost/regex/v4/protected_call.hpp> +#error #include <boost/regex/v4/protected_call.hpp> namespace boost { namespace BOOST_REGEX_DETAIL_NS { diff --git a/contrib/restricted/boost/regex/src/static_mutex.cpp b/contrib/restricted/boost/regex/src/static_mutex.cpp index b238b44a41..2c6d4b0c1f 100644 --- a/contrib/restricted/boost/regex/src/static_mutex.cpp +++ b/contrib/restricted/boost/regex/src/static_mutex.cpp @@ -35,7 +35,7 @@ # define WIN32_LEAN_AND_MEAN #endif #include <windows.h> -#include <boost/static_assert.hpp> +#error #include <boost/static_assert.hpp> #endif diff --git a/contrib/restricted/boost/regex/src/wide_posix_api.cpp b/contrib/restricted/boost/regex/src/wide_posix_api.cpp index 993464f86b..ae95025131 100644 --- a/contrib/restricted/boost/regex/src/wide_posix_api.cpp +++ b/contrib/restricted/boost/regex/src/wide_posix_api.cpp @@ -26,7 +26,7 @@ #include <boost/cregex.hpp> #ifndef BOOST_REGEX_STANDALONE -#include <boost/core/snprintf.hpp> +#error #include <boost/core/snprintf.hpp> #else namespace boost { namespace core { using std::swprintf; } } #endif |