Boost logo

Boost :

From: Ralf W. Grosse-Kunstleve (rwgk_at_[hidden])
Date: 2005-07-25 18:39:04


--- Douglas Gregor <doug.gregor_at_[hidden]> wrote:
> The source code for Boost 1.33.0 is now frozen. Please do not check in
> any changes to the Boost source code without my explicit permission.
> You may still update parts of Boost that do not affect the regression
> tests in any way, until we have our final freeze of the entire tree at
> 11PM EST on Wednesday.

I just noticed a trivial but nasty problem in one of the Boost.Python tests.
Python stipulates a certain include order. pointer_vector.cpp doesn't adhere to
the requirements. This leads to failures on some platforms (at least
Tru64/cxx). It would set a bad example to release the code as is. Would it be
OK to check in the simple fix below?

Thanks!
        Ralf

Index: pointer_vector.cpp
===================================================================
RCS file: /cvsroot/boost/boost/libs/python/test/pointer_vector.cpp,v
retrieving revision 1.1
diff -u -r1.1 pointer_vector.cpp
--- pointer_vector.cpp 7 Jul 2005 14:00:31 -0000 1.1
+++ pointer_vector.cpp 25 Jul 2005 23:31:44 -0000
@@ -1,6 +1,6 @@
-#include <vector>
 #include <boost/python.hpp>
 #include <boost/python/suite/indexing/vector_indexing_suite.hpp>
+#include <vector>
 
 using namespace boost::python;

                
____________________________________________________
Start your day with Yahoo! - make it your home page
http://www.yahoo.com/r/hs
 


Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk