Update of /cvsroot/boost-sandbox/boost-sandbox/libs/circular_buffer/test
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv8179/libs/circular_buffer/test
Modified Files:
space_optimized_test.cpp test.hpp
Log Message:
Iterator invalidation made more explicit.
Index: space_optimized_test.cpp
===================================================================
RCS file: /cvsroot/boost-sandbox/boost-sandbox/libs/circular_buffer/test/space_optimized_test.cpp,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- space_optimized_test.cpp 18 Feb 2007 23:03:27 -0000 1.11
+++ space_optimized_test.cpp 6 Mar 2007 00:03:46 -0000 1.12
@@ -6,8 +6,6 @@
// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
-#define BOOST_CB_TEST
-
#include "test.hpp"
#define CB_CONTAINER circular_buffer_space_optimized
Index: test.hpp
===================================================================
RCS file: /cvsroot/boost-sandbox/boost-sandbox/libs/circular_buffer/test/test.hpp,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- test.hpp 18 Dec 2006 01:30:29 -0000 1.13
+++ test.hpp 6 Mar 2007 00:03:46 -0000 1.14
@@ -13,6 +13,8 @@
#pragma once
#endif
+#define BOOST_CB_TEST
+
#include <boost/circular_buffer.hpp>
#include <boost/test/included/unit_test_framework.hpp>
#include <boost/iterator.hpp>
|