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:
parent
789abad8f3
commit
a2e064a9c0
2 changed files with 7 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue