aboutsummaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorrobot-contrib <robot-contrib@yandex-team.com>2024-04-28 09:17:53 +0300
committerrobot-contrib <robot-contrib@yandex-team.com>2024-04-28 09:27:03 +0300
commitaab57cea700536f9c26662a63a6b52e0e9bb7330 (patch)
treef38a57e4628adb02984a6fd9b7dafe3ab1919a74 /contrib
parent2c75f008ecfca5cfe830f799d7fa3f48a9760ce1 (diff)
downloadydb-aab57cea700536f9c26662a63a6b52e0e9bb7330.tar.gz
Update contrib/restricted/boost/assert to 1.85.0
889320b6b9c8c525bbbfa545ceb5c39b40dcf562
Diffstat (limited to 'contrib')
-rw-r--r--contrib/restricted/boost/assert/include/boost/assert/source_location.hpp4
-rw-r--r--contrib/restricted/boost/assert/ya.make4
2 files changed, 6 insertions, 2 deletions
diff --git a/contrib/restricted/boost/assert/include/boost/assert/source_location.hpp b/contrib/restricted/boost/assert/include/boost/assert/source_location.hpp
index a265ad5cb8..c4d5f1b173 100644
--- a/contrib/restricted/boost/assert/include/boost/assert/source_location.hpp
+++ b/contrib/restricted/boost/assert/include/boost/assert/source_location.hpp
@@ -144,6 +144,10 @@ template<class E, class T> std::basic_ostream<E, T> & operator<<( std::basic_ost
# define BOOST_CURRENT_LOCATION ::boost::source_location()
+#elif defined(BOOST_MSVC) && BOOST_MSVC >= 1935
+
+# define BOOST_CURRENT_LOCATION ::boost::source_location(__builtin_FILE(), __builtin_LINE(), __builtin_FUNCSIG(), __builtin_COLUMN())
+
#elif defined(BOOST_MSVC) && BOOST_MSVC >= 1926
// std::source_location::current() is available in -std:c++20, but fails with consteval errors before 19.31, and doesn't produce
diff --git a/contrib/restricted/boost/assert/ya.make b/contrib/restricted/boost/assert/ya.make
index 46ab40f809..62b683cdd1 100644
--- a/contrib/restricted/boost/assert/ya.make
+++ b/contrib/restricted/boost/assert/ya.make
@@ -6,9 +6,9 @@ LICENSE(BSL-1.0)
LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
-VERSION(1.84.0)
+VERSION(1.85.0)
-ORIGINAL_SOURCE(https://github.com/boostorg/assert/archive/boost-1.84.0.tar.gz)
+ORIGINAL_SOURCE(https://github.com/boostorg/assert/archive/boost-1.85.0.tar.gz)
PEERDIR(
contrib/restricted/boost/config