aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrobot-contrib <robot-contrib@yandex-team.com>2023-08-14 23:32:27 +0300
committerrobot-contrib <robot-contrib@yandex-team.com>2023-08-15 11:18:37 +0300
commit90ecae574ac3293113bccc3e67059283b13d8db2 (patch)
tree981acec117dd9d60eedc256b148c5c91ad0dd25b
parent0c6ce58418140728837ccef0c50a484ef4ddd373 (diff)
downloadydb-90ecae574ac3293113bccc3e67059283b13d8db2.tar.gz
Update contrib/restricted/boost/throw_exception to 1.83.0
-rw-r--r--contrib/restricted/boost/throw_exception/include/boost/throw_exception.hpp4
-rw-r--r--contrib/restricted/boost/throw_exception/ya.make4
2 files changed, 4 insertions, 4 deletions
diff --git a/contrib/restricted/boost/throw_exception/include/boost/throw_exception.hpp b/contrib/restricted/boost/throw_exception/include/boost/throw_exception.hpp
index cdda86b160..7c7fcbddc6 100644
--- a/contrib/restricted/boost/throw_exception/include/boost/throw_exception.hpp
+++ b/contrib/restricted/boost/throw_exception/include/boost/throw_exception.hpp
@@ -104,9 +104,9 @@ public:
copy_from( &e );
set_info( *this, throw_file( loc.file_name() ) );
- set_info( *this, throw_line( loc.line() ) );
+ set_info( *this, throw_line( static_cast<int>( loc.line() ) ) );
set_info( *this, throw_function( loc.function_name() ) );
- set_info( *this, throw_column( loc.column() ) );
+ set_info( *this, throw_column( static_cast<int>( loc.column() ) ) );
}
virtual boost::exception_detail::clone_base const * clone() const BOOST_OVERRIDE
diff --git a/contrib/restricted/boost/throw_exception/ya.make b/contrib/restricted/boost/throw_exception/ya.make
index afa915cae1..af5e72f1ce 100644
--- a/contrib/restricted/boost/throw_exception/ya.make
+++ b/contrib/restricted/boost/throw_exception/ya.make
@@ -6,9 +6,9 @@ LICENSE(BSL-1.0)
LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
-VERSION(1.82.0)
+VERSION(1.83.0)
-ORIGINAL_SOURCE(https://github.com/boostorg/throw_exception/archive/boost-1.82.0.tar.gz)
+ORIGINAL_SOURCE(https://github.com/boostorg/throw_exception/archive/boost-1.83.0.tar.gz)
PEERDIR(
contrib/restricted/boost/assert