summaryrefslogtreecommitdiff
path: root/libs/circular_buffer
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@baserock.org>2014-10-31 14:41:14 +0000
committer <>2014-12-12 16:07:56 +0000
commited232fdd34968697a68783b3195b1da4226915b5 (patch)
tree7a7053ceb8874b28ec4b868d4c49b500008a102e /libs/circular_buffer
parent1c3648bf5b7d17fcd4fe9bc95802b16fd9eee304 (diff)
downloadboost-tarball-ed232fdd34968697a68783b3195b1da4226915b5.tar.gz
Imported from /home/lorry/working-area/delta_boost-tarball/boost_1_57_0.tar.bz2.boost_1_57_0
Diffstat (limited to 'libs/circular_buffer')
-rw-r--r--libs/circular_buffer/doc/jamfile.v215
-rw-r--r--libs/circular_buffer/meta/libraries.json14
-rw-r--r--libs/circular_buffer/test/common.ipp2
3 files changed, 22 insertions, 9 deletions
diff --git a/libs/circular_buffer/doc/jamfile.v2 b/libs/circular_buffer/doc/jamfile.v2
index 75ce74915..bdc1659ba 100644
--- a/libs/circular_buffer/doc/jamfile.v2
+++ b/libs/circular_buffer/doc/jamfile.v2
@@ -11,7 +11,7 @@
path-constant nav_images : html/images/ ; # png and svg images for home, next, note, tip...
path-constant images_location : html/images ; # location of my SVG and PNG images referenced by Quickbook.
-path-constant pdf_images_location : html ; # location of SVG and PNG images referenced by pdf.
+path-constant pdf_images_location : .. ; # location of SVG and PNG images referenced by pdf.
path-constant here : . ; # location of /doc folder.
# echo "nav_images = " $(nav_images) ; # "nav_images = I:\boost-trunk\libs\circular_buffer\doc\html\images
@@ -181,14 +181,15 @@ boostbook standalone
# Set these one for PDF generation *only*:
# default png graphics are awful in PDF form,
# better use SVG instead:
- #<format>pdf:<xsl:param>admon.graphics.extension=".svg"
- <format>pdf:<xsl:param>admon.graphics.extension=".png" # Only png images are available.
- <format>pdf:<xsl:param>admon.graphics.path=$(nav_images)/ # next, prev, note, tip ... for pdf.
+ <format>pdf:<xsl:param>admon.graphics.extension=".svg"
+ #<format>pdf:<xsl:param>admon.graphics.extension=".png" # Only png images are available.
+ # Don't need this, default path works OK:
+ #<format>pdf:<xsl:param>admon.graphics.path=$(nav_images)/ # next, prev, note, tip ... for pdf.
<format>pdf:<xsl:param>use.role.for.mediaobject=1
<format>pdf:<xsl:param>preferred.mediaobject.role=print
- <format>pdf:<xsl:param>img.src.path=$(pdf_images_location)/ # graphics (diagrams) for pdf.
+ <format>pdf:<xsl:param>img.src.path=$(pdf_images_location)/ # graphics (diagrams) for pdf.
<format>pdf:<xsl:param>draft.mode="no"
- <format>pdf:<xsl:param>boost.url.prefix=../../../..
+ <format>pdf:<xsl:param>boost.url.prefix=../../../..
<dependency>autodoc #
<dependency>png_install
@@ -205,7 +206,7 @@ install png_install : [ glob $(here)/*.png ] : <location>$(here)/../../../doc/ht
# because a modified pdf file is created, so this command
# will rename the file to the expected filename, here circular_buffer.pdf.
-install pdf-install : standalone : <install-type>PDF <location>. <name>circular_buffer.pdf ;
+install pdfinstall : standalone : <install-type>PDF <location>. <name>circular_buffer.pdf ;
diff --git a/libs/circular_buffer/meta/libraries.json b/libs/circular_buffer/meta/libraries.json
new file mode 100644
index 000000000..b9f78c391
--- /dev/null
+++ b/libs/circular_buffer/meta/libraries.json
@@ -0,0 +1,14 @@
+{
+ "key": "circular_buffer",
+ "name": "Circular Buffer",
+ "authors": [
+ "Jan Gaspar"
+ ],
+ "description": "A STL compliant container also known as ring or cyclic buffer.",
+ "category": [
+ "Containers"
+ ],
+ "maintainers": [
+ "Jan Gaspar <jano_gaspar -at- yahoo.com>"
+ ]
+}
diff --git a/libs/circular_buffer/test/common.ipp b/libs/circular_buffer/test/common.ipp
index bbc38c99d..6b97b2eb3 100644
--- a/libs/circular_buffer/test/common.ipp
+++ b/libs/circular_buffer/test/common.ipp
@@ -2113,7 +2113,6 @@ void move_container_on_cpp11() {
struct noncopyable_movable_except_t
- : private boost::noncopyable // required, until there will be no support for is_copy_constructible added to Boost.Move
{
private:
BOOST_MOVABLE_BUT_NOT_COPYABLE(noncopyable_movable_except_t)
@@ -2152,7 +2151,6 @@ public:
};
struct noncopyable_movable_noexcept_t
- : private boost::noncopyable // required, until there will be no support for is_copy_constructible added to Boost.Move
{
private:
BOOST_MOVABLE_BUT_NOT_COPYABLE(noncopyable_movable_noexcept_t)