changed the element type to be different from the index type to bring out more errors

[SVN r21771]
This commit is contained in:
Jeremy Siek
2004-01-15 19:01:38 +00:00
parent c6526fc609
commit f72d264b6b

View File

@ -20,7 +20,7 @@
void permutation_test()
{
// Example taken from documentation of old permutation_iterator.
typedef std::vector< int > element_range_type;
typedef std::vector< double > element_range_type;
typedef std::list< int > index_type;
const int element_range_size = 10;