]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/ptr_container/test/ptr_vector_size.cpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / ptr_container / test / ptr_vector_size.cpp
CommitLineData
7c673cae
FG
1//
2// Boost.Pointer Container
3//
4// Copyright Thorsten Ottosen 2003-2005. Use, modification and
5// distribution is subject to the Boost Software License, Version
6// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
7// http://www.boost.org/LICENSE_1_0.txt)
8//
9// For more information, see http://www.boost.org/libs/ptr_container/
10//
11
12#include <boost/ptr_container/ptr_vector.hpp>
13
14template class
15boost::ptr_vector<int>;
16
17template class
18boost::ptr_vector<short>;
19
20template class
21boost::ptr_vector<char>;
22
23template class
24boost::ptr_vector<char*>;
25
26