Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions include/boost/context/fiber_fcontext.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,10 @@ struct __cxa_eh_globals {

class manage_exception_state {
public:
manage_exception_state() {
BOOST_NOINLINE manage_exception_state() {
exception_state_ = *__cxa_get_globals();
}
~manage_exception_state() {
BOOST_NOINLINE ~manage_exception_state() {
*__cxa_get_globals() = exception_state_;
}
private:
Expand Down