aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/restricted/boost
diff options
context:
space:
mode:
authorrobot-contrib <robot-contrib@yandex-team.com>2022-08-06 01:10:34 +0300
committerrobot-contrib <robot-contrib@yandex-team.com>2022-08-06 01:10:34 +0300
commita1d33a36a3cb857aaff387f5b3f000a646416a6c (patch)
treeb0d57b1136f347e5f7cab34e27d203309712c0af /contrib/restricted/boost
parent4382ded89c435e345399a684a1eda937fd348560 (diff)
downloadydb-a1d33a36a3cb857aaff387f5b3f000a646416a6c.tar.gz
Update contrib/restricted/boost/assert to 1.79.0
Diffstat (limited to 'contrib/restricted/boost')
-rw-r--r--contrib/restricted/boost/assert/README.md3
-rw-r--r--contrib/restricted/boost/assert/include/boost/current_function.hpp6
2 files changed, 4 insertions, 5 deletions
diff --git a/contrib/restricted/boost/assert/README.md b/contrib/restricted/boost/assert/README.md
index 645b7bb490..271c5a688a 100644
--- a/contrib/restricted/boost/assert/README.md
+++ b/contrib/restricted/boost/assert/README.md
@@ -6,8 +6,7 @@ provides several configurable diagnostic macros similar in behavior and purpose
## Documentation
-See the documentation of [BOOST_ASSERT](doc/assert.adoc) and
-[BOOST_CURRENT_FUNCTION](doc/current_function.adoc) for more information.
+See [the documentation](https://boost.org/libs/assert) for more information.
## License
diff --git a/contrib/restricted/boost/assert/include/boost/current_function.hpp b/contrib/restricted/boost/assert/include/boost/current_function.hpp
index 86955cb041..731d1b13e5 100644
--- a/contrib/restricted/boost/assert/include/boost/current_function.hpp
+++ b/contrib/restricted/boost/assert/include/boost/current_function.hpp
@@ -10,13 +10,13 @@
//
// boost/current_function.hpp - BOOST_CURRENT_FUNCTION
//
-// Copyright (c) 2002 Peter Dimov and Multi Media Ltd.
+// Copyright 2002-2018 Peter Dimov
//
// Distributed under the Boost Software License, Version 1.0.
// See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt
//
-// http://www.boost.org/libs/assert/current_function.html
+// http://www.boost.org/libs/assert
//
namespace boost
@@ -32,7 +32,7 @@ inline void current_function_helper()
# define BOOST_CURRENT_FUNCTION "(unknown)"
-#elif defined(__GNUC__) || (defined(__MWERKS__) && (__MWERKS__ >= 0x3000)) || (defined(__ICC) && (__ICC >= 600)) || defined(__ghs__)
+#elif defined(__GNUC__) || (defined(__MWERKS__) && (__MWERKS__ >= 0x3000)) || (defined(__ICC) && (__ICC >= 600)) || defined(__ghs__) || defined(__clang__)
# define BOOST_CURRENT_FUNCTION __PRETTY_FUNCTION__