Merge Predef library to release.

[SVN r85618]
This commit is contained in:
Rene Rivera 2013-09-09 04:06:52 +00:00
parent d9df548ac7
commit 10a5233829
6 changed files with 22 additions and 1 deletions

4
.gitmodules vendored
View file

@ -378,6 +378,10 @@
path = libs/icl
url = ../icl.git
fetchRecurseSubmodules = on-demand
[submodule "predef"]
path = libs/predef
url = ../predef.git
fetchRecurseSubmodules = on-demand
[submodule "chrono"]
path = libs/chrono
url = ../chrono.git

@ -1 +1 @@
Subproject commit 06aac2f31103a2a82c24cc6f77bcbdbaa9cc510a
Subproject commit 2b05049c564c2820a4d78e51568b9eef535c709a

View file

@ -242,6 +242,13 @@ how to download, build, and install the libraries.</p>
<li><a href="phoenix/index.html">Phoenix</a> - Define small unnamed
function objects at the actual call site, and more, from Joel de Guzman, Dan
Marsden and Thomas Heller</li>
<li><a href="predef/index.html">Predef</a> - This library defines a set of
compiler, architecture, operating system, library, and other version
numbers from the information it can gather of C, C++, Objective C, and
Objective C++ predefined macros or those defined in generally available
headers, from Rene Rivera.</li>
<li><a href="ptr_container/index.html">pointer container</a>
- Containers for storing heap-allocated polymorphic objects to ease
OO-programming, from Thorsten Ottosen. </li>
@ -868,6 +875,13 @@ of arbitrary data for persistence and marshalling, from Robert Ramey</li>
Kevlin Henney.</li>
<li><a href="numeric/conversion/doc/html/index.html">numeric/conversion</a> - Optimized Policy-based Numeric Conversions,
from Fernando Cacciola.</li>
<li><a href="predef/index.html">Predef</a> - This library defines a set of
compiler, architecture, operating system, library, and other version
numbers from the information it can gather of C, C++, Objective C, and
Objective C++ predefined macros or those defined in generally available
headers, from Rene Rivera.</li>
<li><a href="utility/swap.html">swap</a> -
Enhanced generic swap function, from Joseph Gauterin.</li>
<li><a href="timer/index.html">timer</a> - Event timer,

View file

@ -79,6 +79,7 @@ parameter David Abrahams <dave -at- boost-consulting.com>, Daniel Wa
phoenix Joel de Guzman <joel -at- boost-consulting.com>, Thomas Heller <thom.heller -at- gmail.com>
polygon Lucanus Simonson <lucanus.j.simonson -at- intel.com>, Andrii Sydorchuk <sydorchuk.andriy -at- gmail.com>
pool Stephen Cleary <scleary -at- jerviswebb.com>
predef Rene Rivera <grafikrobot -at- gmail.com>
preprocessor Paul Mensonides <pmenso57 -at- comcast.net>
program_options Vladimir Prus <ghost -at- cs.msu.su>
property_map Douglas Gregor <dgregor -at- cs.indiana.edu>

1
libs/predef Submodule

@ -0,0 +1 @@
Subproject commit 79a9679838896c8bbcb9384f16daa0a7da8c9053

View file

@ -122,6 +122,7 @@ run-tests libs :
phoenix/test # test-suite phoenix
polygon/test # test-suite polygon
pool/test # test-suite pool
predef/test # test-suite predef
preprocessor/test # test-suite preprocessor
program_options/test # test-suite program_options
property_map/test # test-suite property_map