public inbox for libstdc++@gcc.gnu.org
 help / color / mirror / Atom feed
From: Jonathan Wakely <jwakely@redhat.com>
To: Martin Liska <mliska@suse.cz>
Cc: gcc-patches@gcc.gnu.org, libstdc++@gcc.gnu.org
Subject: Re: [PATCH 4/4] Use const for template argument.
Date: Wed, 6 May 2020 11:01:27 +0100	[thread overview]
Message-ID: <20200506100127.GY2678@redhat.com> (raw)
In-Reply-To: <d6ea1e5197ae6054e37775fc88c1ceccc04859b4.1580987096.git.mliska@suse.cz>

On 04/02/20 14:55 +0100, Martin Liska wrote:
>diff --git a/libstdc++-v3/include/parallel/multiway_merge.h b/libstdc++-v3/include/parallel/multiway_merge.h
>index 983c7b2bd9a..97a9ce0feb7 100644
>--- a/libstdc++-v3/include/parallel/multiway_merge.h
>+++ b/libstdc++-v3/include/parallel/multiway_merge.h
>@@ -118,7 +118,7 @@ namespace __gnu_parallel
>        *  @return @c true if less. */
>       friend bool
>       operator<(_GuardedIterator<_RAIter, _Compare>& __bi1,
>-               _GuardedIterator<_RAIter, _Compare>& __bi2)
>+               _GuardedIterator<_RAIter, const _Compare>& __bi2)
>       {
>        if (__bi1._M_current == __bi1._M_end)       // __bi1 is sup
>          return __bi2._M_current == __bi2._M_end;  // __bi2 is not sup
>@@ -188,7 +188,7 @@ namespace __gnu_parallel
>        *  @return @c true if less. */
>       friend bool
>       operator<(_UnguardedIterator<_RAIter, _Compare>& __bi1,
>-               _UnguardedIterator<_RAIter, _Compare>& __bi2)
>+               _UnguardedIterator<_RAIter, const _Compare>& __bi2)
>       {
>        // Normal compare.
>        return (__bi1.__comp)(*__bi1, *__bi2);


This is completely bogus, please revert.

The cppcheck warning is saying that it could be:

     const _UnguardedIterator<_RAIter, _Compare>&

which is completely different from:

     _UnguardedIterator<_RAIter, const _Compare>&

Also both parameters of operator< should have been changed, not just
one, and operator<= should have the same change.

But cppcheck is completely wrong anyway. The operator* member of
_GuardedIterator and _UnguardedIterator is not const, so trying to
dereference *__b1 and *__b2 would fail.

Nack nack nack.


       reply	other threads:[~2020-05-06 10:01 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <cover.1580987096.git.mliska@suse.cz>
     [not found] ` <d6ea1e5197ae6054e37775fc88c1ceccc04859b4.1580987096.git.mliska@suse.cz>
2020-05-06 10:01   ` Jonathan Wakely [this message]
2020-05-07 20:44     ` Jonathan Wakely

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200506100127.GY2678@redhat.com \
    --to=jwakely@redhat.com \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=libstdc++@gcc.gnu.org \
    --cc=mliska@suse.cz \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).