Fixes Trac issue #9801 ("I can no longer create and iterator_range from a stable_vector")

This commit is contained in:
Ion Gaztañaga
2014-06-06 13:21:03 +02:00
parent 8c1bfe2881
commit 790a8798d4
3 changed files with 162 additions and 169 deletions

View File

@@ -56,12 +56,8 @@ template class stable_vector
< test::movable_and_copyable_int
, node_allocator<test::movable_and_copyable_int> >;
namespace stable_vector_detail{
template class iterator<int*, false>;
template class iterator<int*, true >;
} //namespace stable_vector_detail{
template class stable_vector_iterator<int*, false>;
template class stable_vector_iterator<int*, true >;
}}