Updated documentation and tests to Boost.Container

[SVN r74156]
This commit is contained in:
Ion Gaztañaga
2011-08-30 12:53:03 +00:00
parent 9cc7307b03
commit 664d8ba073
7 changed files with 25 additions and 26 deletions

View File

@ -10,13 +10,13 @@
//////////////////////////////////////////////////////////////////////////////
//[move_iterator_example
#include <boost/interprocess/containers/vector.hpp>
#include <boost/container/vector.hpp>
#include "movable.hpp"
#include <cassert>
int main()
{
using namespace ::boost::interprocess;
using namespace ::boost::container;
//Create a vector with 10 default constructed objects
vector<movable> v(10);