From 0bfe1d926130718cb175e1381b651b6a7c922daa Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Wed, 26 Jan 2022 07:17:51 +0200 Subject: [PATCH] Remove wrapexcept::location() --- include/boost/throw_exception.hpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/include/boost/throw_exception.hpp b/include/boost/throw_exception.hpp index 51785c4..3ef17c3 100644 --- a/include/boost/throw_exception.hpp +++ b/include/boost/throw_exception.hpp @@ -197,11 +197,6 @@ public: set_info_impl( this, throw_line( loc.line() ) ); set_info_impl( this, throw_function( loc.function_name() ) ); } - - virtual boost::source_location location() const BOOST_NOEXCEPT - { - return loc_; - } }; // All boost exceptions are required to derive from std::exception,