re PR libstdc++/47437 (libstdc++ parallel mode: multiway_merge does not compile)

2011-01-24  Johannes Singler  <singler@kit.edu>

        PR libstdc++/47437
        * include/parallel/multiway_merge.h (_UnguardedIterator):
        Remove useless "mutable" from reference declaration.

From-SVN: r169166
This commit is contained in:
Johannes Singler 2011-01-24 16:44:30 +00:00 committed by Johannes Singler
parent 789abad8f3
commit a2e064a9c0
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2011-01-24 Johannes Singler <singler@kit.edu>
PR libstdc++/47437
* include/parallel/multiway_merge.h (_UnguardedIterator):
Remove useless "mutable" from reference declaration.
2011-01-21 Benjamin Kosnik <bkoz@redhat.com>
* include/bits/c++config (_GLIBCXX_EXPORT_TEMPLATE): Remove.

View File

@ -143,7 +143,7 @@ namespace __gnu_parallel
/** @brief Current iterator __position. */
_RAIter _M_current;
/** @brief _Compare. */
mutable _Compare& __comp;
_Compare& __comp;
public:
/** @brief Constructor. Sets iterator to beginning of sequence.