search_n.cc: Disambiguate local variable.
authorBenjamin Kosnik <bkoz@redhat.com>
Mon, 19 Dec 2011 23:29:14 +0000 (23:29 +0000)
committerBenjamin Kosnik <bkoz@gcc.gnu.org>
Mon, 19 Dec 2011 23:29:14 +0000 (23:29 +0000)
2011-12-19  Benjamin Kosnik  <bkoz@redhat.com>

* testsuite/performance/25_algorithms/search_n.cc: Disambiguate
local variable.

From-SVN: r182510

libstdc++-v3/ChangeLog
libstdc++-v3/testsuite/performance/25_algorithms/search_n.cc

index 957d9630cc2874ba542133345a5ea49915b64a5e..07a8d7f456778c00bec510f33887c465d4070cbf 100644 (file)
@@ -1,3 +1,8 @@
+2011-12-19  Benjamin Kosnik  <bkoz@redhat.com>
+
+       * testsuite/performance/25_algorithms/search_n.cc: Disambiguate
+       local variable.
+
 2011-12-18  Jonathan Wakely  <jwakely.gcc@gmail.com>
 
        * doc/xml/manual/iterators.xml: Replace "sect1" with "section".
index 13bc6ad9f293709e1ea8092acfcd6a5308a5d29f..596ded8b207aa03998bbdc9e3af2f7361be88808 100644 (file)
@@ -31,7 +31,7 @@ using namespace __gnu_test;
 
 const int length = 10000000;
 const int match_length = 3;
-int array[length];
+int ary[length];
 
 int
 main(void)
@@ -41,10 +41,10 @@ main(void)
   int match = rand() % (match_length - 1);
   for(int i = 0; i < length; i++)
     {
-      array[i] = (match != 0) ? 1 : 0;
+      ary[i] = (match != 0) ? 1 : 0;
       if(--match < 0) match = rand() % (match_length - 1);
     }
-  __gnu_test::test_container<int, forward_iterator_wrapper> fcon(array, array + length);
+  __gnu_test::test_container<int, forward_iterator_wrapper> fcon(ary, ary + length);
   start_counters(time, resource);
   for(int i = 0; i < 100; i++)
     search_n(fcon.begin(), fcon.end(), 10, 1);
@@ -52,7 +52,7 @@ main(void)
   report_performance(__FILE__, "forward iterator", time, resource);
   clear_counters(time, resource);
 
-  __gnu_test::test_container<int, random_access_iterator_wrapper> rcon(array, array + length);
+  __gnu_test::test_container<int, random_access_iterator_wrapper> rcon(ary, ary + length);
   start_counters(time, resource);
   for(int i = 0; i < 100; i++)
     search_n(rcon.begin(), rcon.end(), 10, 1);