From b8fc3fd4221869360edbc72b5d9596af1bf84ed1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Mon, 29 Jul 2024 00:32:51 +0200 Subject: [PATCH] - Add natvis definition to changelog - Replace BOOST_TRY with try in example --- doc/interprocess.qbk | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/doc/interprocess.qbk b/doc/interprocess.qbk index 6354417..0024166 100644 --- a/doc/interprocess.qbk +++ b/doc/interprocess.qbk @@ -2308,13 +2308,13 @@ we should call to unlock it: [c++] - BOOST_TRY{ + try{ //Mutex operations } - BOOST_CATCH(...){ + catch(...){ //What should we call? "unlock()" or "unlock_sharable()" //Is the mutex locked? - } BOOST_CATCH_END + } We can use [*lock transfer] to simplify all this management: @@ -6831,6 +6831,8 @@ thank them: * [@https://github.com/boostorg/interprocess/pull/207 GitHub #207 (['"cmake: link system libraries"])]. * [@https://github.com/boostorg/interprocess/pull/214 GitHub #214 (['"Doc: Fix github links"])]. +* Added natvis definition for `offset_ptr`. Many thanks to Braden Ganetsky. + [endsect] [section:release_notes_boost_1_85_00 Boost 1.85 Release]