summaryrefslogtreecommitdiff
path: root/libs/array/doc/array.xml
diff options
context:
space:
mode:
authorAnas Nashif <anas.nashif@intel.com>2013-08-26 08:15:55 -0400
committerAnas Nashif <anas.nashif@intel.com>2013-08-26 08:15:55 -0400
commitbb4dd8289b351fae6b55e303f189127a394a1edd (patch)
tree77c9c35a31b1459dd7988c2448e797d142530c41 /libs/array/doc/array.xml
parent1a78a62555be32868418fe52f8e330c9d0f95d5a (diff)
downloadboost-bb4dd8289b351fae6b55e303f189127a394a1edd.tar.gz
boost-bb4dd8289b351fae6b55e303f189127a394a1edd.tar.bz2
boost-bb4dd8289b351fae6b55e303f189127a394a1edd.zip
Imported Upstream version 1.51.0upstream/1.51.0
Diffstat (limited to 'libs/array/doc/array.xml')
-rw-r--r--libs/array/doc/array.xml7
1 files changed, 6 insertions, 1 deletions
diff --git a/libs/array/doc/array.xml b/libs/array/doc/array.xml
index b40d21cc96..8a15141579 100644
--- a/libs/array/doc/array.xml
+++ b/libs/array/doc/array.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE library PUBLIC "-//Boost//DTD BoostBook XML V1.0//EN"
"http://www.boost.org/tools/boostbook/dtd/boostbook.dtd">
-<library name="Array" dirname="array" id="array" last-revision="$Date: 2011-03-29 17:04:24 -0400 (Tue, 29 Mar 2011) $">
+<library name="Array" dirname="array" id="array" last-revision="$Date: 2012-06-14 09:01:03 -0700 (Thu, 14 Jun 2012) $">
<libraryinfo>
<author>
<firstname>Nicolai</firstname>
@@ -70,6 +70,11 @@
Technical Report, which will extend the C++ Standard (see
<ulink url="http://std.dkuug.dk/jtc1/sc22/wg21/docs/papers/2003/n1548.htm">http://std.dkuug.dk/jtc1/sc22/wg21/docs/papers/2003/n1548.htm</ulink>).</para>
+ <para>Update: <code>std::array</code> is (as of C++11) part of the C++ standard.
+ The differences between <code>boost::array</code> and <code>std::array</code> are minimal.
+ If you are using C++11, you should consider using <code>std::array</code> instead of <code>boost::array</code>.
+ </para>
+
<para>Class <code><classname>array</classname></code> fulfills most
but not all of the requirements of "reversible containers" (see
Section 23.1, [lib.container.requirements] of the C++