Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r82426 - in sandbox/static_vector: boost/container doc doc/generated doc/html doc/html/static_vector/static_vector
From: adam.wulkiewicz_at_[hidden]
Date: 2013-01-09 18:25:10


Author: awulkiew
Date: 2013-01-09 18:25:09 EST (Wed, 09 Jan 2013)
New Revision: 82426
URL: http://svn.boost.org/trac/boost/changeset/82426

Log:
Fixed param name in push_back description.
Added proper start_include directory in make_qbk script.
Text files modified:
   sandbox/static_vector/boost/container/static_vector.hpp | 4 ++--
   sandbox/static_vector/doc/generated/static_vector.qbk | 6 +++---
   sandbox/static_vector/doc/html/index.html | 2 +-
   sandbox/static_vector/doc/html/static_vector/static_vector/reference.html | 10 ++++++++--
   sandbox/static_vector/doc/make_qbk.py | 5 ++---
   5 files changed, 16 insertions(+), 11 deletions(-)

Modified: sandbox/static_vector/boost/container/static_vector.hpp
==============================================================================
--- sandbox/static_vector/boost/container/static_vector.hpp (original)
+++ sandbox/static_vector/boost/container/static_vector.hpp 2013-01-09 18:25:09 EST (Wed, 09 Jan 2013)
@@ -701,7 +701,7 @@
     //!
     //! @brief Adds a copy of value at the end.
     //!
- //! @param count The value used to copy construct the new element.
+ //! @param value The value used to copy construct the new element.
     //!
     //! @par Throws
     //! If Value's copy constructor throws.
@@ -724,7 +724,7 @@
     //!
     //! @brief Moves value to the end.
     //!
- //! @param count The value to move construct the new element.
+ //! @param value The value to move construct the new element.
     //!
     //! @par Throws
     //! If Value's move constructor throws.

Modified: sandbox/static_vector/doc/generated/static_vector.qbk
==============================================================================
--- sandbox/static_vector/doc/generated/static_vector.qbk (original)
+++ sandbox/static_vector/doc/generated/static_vector.qbk 2013-01-09 18:25:09 EST (Wed, 09 Jan 2013)
@@ -16,7 +16,7 @@
 Error handling behavior can be modified to more closely match std::vector exception behavior when exceeding bounds by providing an alternate Strategy and static_vector_traits instantiation.
 
 [heading Header]
-`#include <.hpp>`
+`#include <boost/container/static_vector.hpp>`
 
 [heading Synopsis]
 ``template<typename Value,
@@ -487,7 +487,7 @@
 [heading Parameters]
 [table
 [[Type][Name][Description]]
-[[ `value_type const &` ][ `value` ][]]
+[[ `value_type const &` ][ `value` ][The value used to copy construct the new element.]]
 ]
 [heading Precondition]
 size() < Capacity.
@@ -506,7 +506,7 @@
 [heading Parameters]
 [table
 [[Type][Name][Description]]
-[[ `value_type &&` ][ `value` ][]]
+[[ `value_type &&` ][ `value` ][The value to move construct the new element.]]
 ]
 [heading Precondition]
 size() < Capacity.

Modified: sandbox/static_vector/doc/html/index.html
==============================================================================
--- sandbox/static_vector/doc/html/index.html (original)
+++ sandbox/static_vector/doc/html/index.html 2013-01-09 18:25:09 EST (Wed, 09 Jan 2013)
@@ -49,7 +49,7 @@
 </div>
 </div>
 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
-<td align="left"><p><small>Last revised: January 09, 2013 at 22:54:49 GMT</small></p></td>
+<td align="left"><p><small>Last revised: January 09, 2013 at 23:24:08 GMT</small></p></td>
 <td align="right"><div class="copyright-footer"></div></td>
 </tr></table>
 <hr>

Modified: sandbox/static_vector/doc/html/static_vector/static_vector/reference.html
==============================================================================
--- sandbox/static_vector/doc/html/static_vector/static_vector/reference.html (original)
+++ sandbox/static_vector/doc/html/static_vector/static_vector/reference.html 2013-01-09 18:25:09 EST (Wed, 09 Jan 2013)
@@ -31,7 +31,7 @@
 <a name="staticvector.static_vector.reference.boost_container_static_vector"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector" title="boost::container::static_vector">boost::container::static_vector</a>
 </h4></div></div></div>
 <p>
- <a class="indexterm" name="id893873"></a><a class="indexterm" name="id893878"></a><a class="indexterm" name="id893883"></a>
+ <a class="indexterm" name="id889504"></a><a class="indexterm" name="id889509"></a><a class="indexterm" name="id889514"></a>
 A hybrid of boost::container::vector and boost::array.
         </p>
 <h6>
@@ -82,7 +82,7 @@
           <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.header"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.header">Header</a>
         </h6>
 <p>
- <code class="computeroutput"><span class="preprocessor">#include</span> <span class="special">&lt;.</span><span class="identifier">hpp</span><span class="special">&gt;</span></code>
+ <code class="computeroutput"><span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">container</span><span class="special">/</span><span class="identifier">static_vector</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span></code>
         </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.h4"></a>
@@ -2740,6 +2740,9 @@
                     </p>
                   </td>
 <td>
+ <p>
+ The value used to copy construct the new element.
+ </p>
                   </td>
 </tr></tbody>
 </table></div>
@@ -2824,6 +2827,9 @@
                     </p>
                   </td>
 <td>
+ <p>
+ The value to move construct the new element.
+ </p>
                   </td>
 </tr></tbody>
 </table></div>

Modified: sandbox/static_vector/doc/make_qbk.py
==============================================================================
--- sandbox/static_vector/doc/make_qbk.py (original)
+++ sandbox/static_vector/doc/make_qbk.py 2013-01-09 18:25:09 EST (Wed, 09 Jan 2013)
@@ -12,13 +12,12 @@
 
 cmd = "doxygen_xml2qbk"
 cmd = cmd + " --xml xml/%s.xml"
-cmd = cmd + " --convenience_headers %s"
-cmd = cmd + " --start_include ."
+cmd = cmd + " --start_include boost/"
 cmd = cmd + " --index_id_path %s"
 cmd = cmd + " --output_style alt"
 cmd = cmd + " > generated/%s.qbk"
 
 os.system("doxygen Doxyfile")
-os.system(cmd % ("classboost_1_1container_1_1static__vector", "boost/container/static_vector.hpp", "staticvector.static_vector.reference", "static_vector"))
+os.system(cmd % ("classboost_1_1container_1_1static__vector", "staticvector.static_vector.reference", "static_vector"))
 
 os.system("b2")


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk