From d930cea4812b74c81dc9167236f1ffdaa30e7ae9 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Mon, 14 Feb 2022 02:05:44 +0200 Subject: [PATCH] Update documentation --- doc/system/reference.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/system/reference.adoc b/doc/system/reference.adoc index 3067cd7..3fa170b 100644 --- a/doc/system/reference.adoc +++ b/doc/system/reference.adoc @@ -1533,7 +1533,7 @@ BOOST_NORETURN inline void throw_exception_from_error( error_code const & e, * {blank} + Effects: :: - `boost::throw_exception( system_error( e ), loc )`. + `boost::throw_with_location( system_error( e ), loc )`. ``` BOOST_NORETURN inline void throw_exception_from_error( std::error_code const & e, @@ -1543,7 +1543,7 @@ BOOST_NORETURN inline void throw_exception_from_error( std::error_code const & e * {blank} + Effects: :: - `boost::throw_exception( std::system_error( e ), loc )`. + `boost::throw_with_location( std::system_error( e ), loc )`. ### result