public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "pashev.igor at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/55557] New: g++ 4.7 does not issue a warning on the first auto_ptr
Date: Sat, 01 Dec 2012 20:43:00 -0000	[thread overview]
Message-ID: <bug-55557-4@http.gcc.gnu.org/bugzilla/> (raw)


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55557

             Bug #: 55557
           Summary: g++ 4.7 does not issue a warning on the first auto_ptr
    Classification: Unclassified
           Product: gcc
           Version: 4.7.2
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: pashev.igor@gmail.com


Here is a C++ source code:

# cat -n test.cpp
 1  #include <memory>
 2  using namespace std;
 3   
 4  int main(int argc, char **argv)
 5  {
 6      auto_ptr<int> x;
 7      auto_ptr<int> y;
 8      auto_ptr<int> z;
 9   
10      return 0;
11  }

Command line to compile it with C++11 standard:
g++-4.7 -std=gnu++11 -Wall -Wextra -Wdeprecated-declarations  -pedantic
test.cpp 

Here is the g++ output:
test.cpp: In function ‘int main(int, char**)’:
test.cpp:7:19: warning: ‘auto_ptr’ is deprecated (declared at
/usr/include/c++/4.7/backward/auto_ptr.h:87) [-Wdeprecated-declarations]
test.cpp:8:19: warning: ‘auto_ptr’ is deprecated (declared at
/usr/include/c++/4.7/backward/auto_ptr.h:87) [-Wdeprecated-declarations]
test.cpp: At global scope:
test.cpp:4:5: warning: unused parameter ‘argc’ [-Wunused-parameter]
test.cpp:4:5: warning: unused parameter ‘argv’ [-Wunused-parameter]

A warning about auto_ptr being deprecated has been issued only for y and z. I
expect a warning for x too.

Moreover, if I leave only one auto_ptr (say, x) I will see no deprecation
warning at all.

It is expected to see warning on every auto_ptr instantiation.


             reply	other threads:[~2012-12-01 20:43 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-12-01 20:43 pashev.igor at gmail dot com [this message]
2012-12-01 20:46 ` [Bug c++/55557] " pashev.igor at gmail dot com
2012-12-01 22:01 ` [Bug c++/55557] no deprecated warning on the first std::auto_ptr paolo.carlini at oracle dot com
2012-12-01 22:12 ` paolo.carlini at oracle dot com

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=bug-55557-4@http.gcc.gnu.org/bugzilla/ \
    --to=gcc-bugzilla@gcc.gnu.org \
    --cc=gcc-bugs@gcc.gnu.org \
    /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).