From 61bed1fd319b28c8ded9b79f13ef135744548ee1 Mon Sep 17 00:00:00 2001 From: Marcel Raad Date: Mon, 25 Feb 2019 10:51:45 +0100 Subject: [PATCH 1/2] Fix -Wextra-semi clang warnings Remove superfluous semicola. --- include/boost/interprocess/streams/bufferstream.hpp | 2 +- include/boost/interprocess/sync/spin/mutex.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/interprocess/streams/bufferstream.hpp b/include/boost/interprocess/streams/bufferstream.hpp index 51f52b0..3690128 100644 --- a/include/boost/interprocess/streams/bufferstream.hpp +++ b/include/boost/interprocess/streams/bufferstream.hpp @@ -308,7 +308,7 @@ class basic_ibufferstream : , basic_streambuf_t(this) {} - ~basic_ibufferstream(){}; + ~basic_ibufferstream(){} public: //!Returns the address of the stored diff --git a/include/boost/interprocess/sync/spin/mutex.hpp b/include/boost/interprocess/sync/spin/mutex.hpp index ad61ddd..c2a6f42 100644 --- a/include/boost/interprocess/sync/spin/mutex.hpp +++ b/include/boost/interprocess/sync/spin/mutex.hpp @@ -45,7 +45,7 @@ class spin_mutex bool try_lock(); bool timed_lock(const boost::posix_time::ptime &abs_time); void unlock(); - void take_ownership(){}; + void take_ownership(){} private: volatile boost::uint32_t m_s; }; From a8de0b9b65ed6b11fe65d6b4d7d8b6e098dba66d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Wed, 27 Feb 2019 00:10:24 +0100 Subject: [PATCH 2/2] Update changelog with #78 --- doc/interprocess.qbk | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/doc/interprocess.qbk b/doc/interprocess.qbk index e796454..a04839d 100644 --- a/doc/interprocess.qbk +++ b/doc/interprocess.qbk @@ -6763,6 +6763,13 @@ thank them: [section:release_notes Release Notes] +[section:release_notes_boost_1_70_00 Boost 1.70 Release] + +* Fixed bugs: + * [@https://github.com/boostorg/interprocess/pull/78 GitHub Pull #78 (['"Fix -Wextra-semi clang warnings"])]. + +[endsect] + [section:release_notes_boost_1_69_00 Boost 1.69 Release] * Deprecated GCC < 4.3 and MSVC < 9.0 (Visual 2008) compilers.