mirror of
https://github.com/boostorg/boost.git
synced 2025-04-11 07:41:06 +00:00
Add align to release
This commit is contained in:
parent
ff41efcc5c
commit
ab41c8d16f
7 changed files with 16 additions and 0 deletions
4
.gitmodules
vendored
4
.gitmodules
vendored
|
@ -454,3 +454,7 @@
|
|||
path = libs/assert
|
||||
url = ../assert.git
|
||||
fetchRecurseSubmodules = on-demand
|
||||
[submodule "align"]
|
||||
path = libs/align
|
||||
url = ../align.git
|
||||
fetchRecurseSubmodules = on-demand
|
||||
|
|
|
@ -84,6 +84,8 @@ boostbook doc
|
|||
<dependency>../libs/lockfree/doc//lockfree
|
||||
<dependency>../libs/atomic/doc//atomic
|
||||
<dependency>../libs/type_erasure/doc//type_erasure
|
||||
<dependency>../libs/align/doc//reference.xml
|
||||
<dependency>../libs/align/doc//align
|
||||
|
||||
## Add path references to the QuickBook generated docs...
|
||||
|
||||
|
@ -118,6 +120,7 @@ boostbook doc
|
|||
<implicit-dependency>../libs/lockfree/doc//lockfree
|
||||
<implicit-dependency>../libs/atomic/doc//atomic
|
||||
<implicit-dependency>../libs/type_erasure/doc//type_erasure
|
||||
<implicit-dependency>../libs/align/doc//align
|
||||
|
||||
<xsl:param>boost.libraries=../../libs/libraries.htm
|
||||
|
||||
|
|
|
@ -40,6 +40,8 @@
|
|||
|
||||
<xi:include href="accumulators.xml"/>
|
||||
|
||||
<xi:include href="align.xml"/>
|
||||
|
||||
<xi:include href="../../libs/any/doc/any.xml"/>
|
||||
<xi:include href="../../libs/array/doc/array.xml"/>
|
||||
|
||||
|
|
1
libs/align
Submodule
1
libs/align
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 4ebadf7fa2fd8ceb1b726bad14704faff0d6a1ad
|
|
@ -82,6 +82,8 @@ how to download, build, and install the libraries.</p>
|
|||
calculation, and collection of statistical accumulators, from Eric Niebler.</li>
|
||||
<li><a href="algorithm/index.html">algorithm</a> - A collection of useful generic
|
||||
algorithms, from Marshall Clow. </li>
|
||||
<li><a href="align/index.html">align</a> - Memory alignment functions,
|
||||
allocators, and adaptors, from Glen Fernandes.</li>
|
||||
<li><a href="any/index.html">any</a> - Safe, generic container for single
|
||||
values of different value types, from Kevlin Henney. </li>
|
||||
<li><a href="array/index.html">array</a> - STL compliant
|
||||
|
@ -688,6 +690,8 @@ of arbitrary data for persistence and marshalling, from Robert Ramey</li>
|
|||
<h3><a name="Memory">Memory</a></h3>
|
||||
|
||||
<ul>
|
||||
<li><a href="align/index.html">align</a> - Memory alignment functions,
|
||||
allocators, and adaptors, from Glen Fernandes.</li>
|
||||
<li><a href="pool/doc/html/index.html">pool</a> - Memory pool management, from
|
||||
Steve Cleary.</li>
|
||||
<li><a href="smart_ptr/index.html">smart_ptr</a> - Six smart
|
||||
|
|
|
@ -12,6 +12,7 @@ accumulators Eric Niebler <eric -at- boostpro.com>
|
|||
algorithm Marshall Clow <marshall -at- idio.com>
|
||||
algorithm/minmax Herve Bronnimann <hbr -at- poly.edu>
|
||||
algorithm/string Marshall Clow <marshall -at- idio.com>
|
||||
align Glen Fernandes <glenfe -at- live.com>
|
||||
any Alexander Nasonov <alexander.nasonov -at- gmail.com>
|
||||
array Marshall Clow <marshall -at- idio.com>
|
||||
asio Chris Kohlhoff <chris -at- kohlhoff.com>
|
||||
|
|
|
@ -50,6 +50,7 @@ run-tests libs :
|
|||
algorithm/test # test-suite algorithm
|
||||
algorithm/minmax/test # test-suite algorith/minmax
|
||||
algorithm/string/test # test-suite algorithm/string
|
||||
align/test # test-suite align
|
||||
array/test # test-suite array
|
||||
asio/test # test-suite asio
|
||||
assert/test # test-suite assert
|
||||
|
|
Loading…
Add table
Reference in a new issue