From f72d264b6bfc4d7399ef849c90ec6d4619f72781 Mon Sep 17 00:00:00 2001 From: Jeremy Siek Date: Thu, 15 Jan 2004 19:01:38 +0000 Subject: [PATCH] changed the element type to be different from the index type to bring out more errors [SVN r21771] --- test/permutation_iterator_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/permutation_iterator_test.cpp b/test/permutation_iterator_test.cpp index 46ae388..ad23300 100644 --- a/test/permutation_iterator_test.cpp +++ b/test/permutation_iterator_test.cpp @@ -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;