2
0
mirror of https://github.com/boostorg/fiber.git synced 2026-02-19 02:12:24 +00:00

Update shared_state.hpp

This commit is contained in:
Oliver Kowalke
2015-12-08 08:43:15 +01:00
parent 622403426f
commit 73b5d9fffc

View File

@@ -172,7 +172,7 @@ private:
if ( except_) {
std::rethrow_exception( except_);
}
return * reinterpret_cast< R * >( & storage_);
return * reinterpret_cast< R * >( std::addressof( storage_) );
}
public: