From 0b9a59f2707ddadc113effa0bedfd36c1a8f78a0 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Fri, 7 Oct 2016 23:07:33 -0500 Subject: [PATCH 1/3] Add, and update, documentation build targets. --- doc/jamfile.v2 | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/doc/jamfile.v2 b/doc/jamfile.v2 index bdc1659..ca6e53b 100644 --- a/doc/jamfile.v2 +++ b/doc/jamfile.v2 @@ -208,5 +208,12 @@ install png_install : [ glob $(here)/*.png ] : $(here)/../../../doc/ht install pdfinstall : standalone : PDF . circular_buffer.pdf ; - - +############################################################################### +alias boostdoc + : standalone/docbook + : + : + : ; +explicit boostdoc ; +alias boostrelease ; +explicit boostrelease ; From 3e2e6e0a26adeb50a2f13dfb819885aece7a0a1d Mon Sep 17 00:00:00 2001 From: Adam Shapiro Date: Mon, 9 Jan 2017 15:50:55 +0000 Subject: [PATCH 2/3] Corrected no_exceptions_support.hpp include. This file appears to have been moved from the detail module to the core module on 6/2014 in core commit 60c9a35d8 (detail commit 099854de). It appears that some package managers' Boost distributions have duplicate copies of the file to work around the error. --- include/boost/circular_buffer/details.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/circular_buffer/details.hpp b/include/boost/circular_buffer/details.hpp index 3262386..17b06c6 100644 --- a/include/boost/circular_buffer/details.hpp +++ b/include/boost/circular_buffer/details.hpp @@ -19,7 +19,7 @@ #include #include #include -#include +#include #include // Silence MS /W4 warnings like C4913: From aa9e13c3671bac6f1fde2be7a845cf8ec92821d7 Mon Sep 17 00:00:00 2001 From: Adam Shapiro Date: Mon, 9 Jan 2017 15:51:48 +0000 Subject: [PATCH 3/3] Removed invalid and unnecessary include of call_traits.hpp. This file does not appear to be required for compilation and no longer exists in the root boost include directory. --- include/boost/circular_buffer/base.hpp | 1 - 1 file changed, 1 deletion(-) diff --git a/include/boost/circular_buffer/base.hpp b/include/boost/circular_buffer/base.hpp index 1dec2f2..50902ae 100644 --- a/include/boost/circular_buffer/base.hpp +++ b/include/boost/circular_buffer/base.hpp @@ -17,7 +17,6 @@ #endif #include -#include #include #include #include