blob: 66e8b817341b578b7f91f06d415e11615010e30a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Use, modification and distribution is subject to the
// Boost Software License, Version 1.0.
// http://www.boost.org/LICENSE_1_0.txt
#include <boost/ptr_container/ptr_vector.hpp>
template<class T> struct Foo
{
static void test(boost::ptr_vector<Foo<T> >& /*t*/)
{
}
};
int main()
{
boost::ptr_vector<Foo<double> > ptr;
return 0;
}
|