PR libstdc++/77936 remove unused variable
authorJonathan Wakely <jwakely@redhat.com>
Mon, 30 Sep 2019 11:52:01 +0000 (12:52 +0100)
committerJonathan Wakely <redi@gcc.gnu.org>
Mon, 30 Sep 2019 11:52:01 +0000 (12:52 +0100)
PR libstdc++/77936
* include/parallel/checkers.h (__is_sorted): Remove unused variable.

From-SVN: r276297

libstdc++-v3/ChangeLog
libstdc++-v3/include/parallel/checkers.h

index bb19eb53f566ca8f961378e3e52b97563b54e1c1..c537807107ca3d6d1d431819c82b07eb33efafc7 100644 (file)
@@ -1,3 +1,8 @@
+2019-09-30  Jonathan Wakely  <jwakely@redhat.com>
+
+       PR libstdc++/77936
+       * include/parallel/checkers.h (__is_sorted): Remove unused variable.
+
 2019-09-28  François Dumont  <fdumont@gcc.gnu.org>
 
        * include/bits/stl_algo.h (merge): Fix documentation.
index f2737c791d607ae2a30b066b696d16158e73aa61..e325b0ab8b417519d25d52461e4c79736828bf98 100644 (file)
@@ -55,7 +55,6 @@ namespace __gnu_parallel
 
       _IIter __current(__begin), __recent(__begin);
 
-      unsigned long long __position = 1;
       for (__current++; __current != __end; __current++)
         {
           if (__comp(*__current, *__recent))
@@ -63,7 +62,6 @@ namespace __gnu_parallel
               return false;
             }
           __recent = __current;
-          __position++;
         }
 
       return true;