public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
From: bkoz@gcc.gnu.org
To: gcc-bugs@gcc.gnu.org, gcc-prs@gcc.gnu.org, jason@gcc.gnu.org,
	nobody@gcc.gnu.org, phil@philipdunstan.com
Subject: Re: libstdc++/7824: Temporary ostream doesn't work properly with operator<< and const char*
Date: Wed, 06 Nov 2002 08:43:00 -0000	[thread overview]
Message-ID: <20021106164347.3962.qmail@sources.redhat.com> (raw)

Synopsis: Temporary ostream doesn't work properly with operator<< and const char*

Responsible-Changed-From-To: unassigned->jason
Responsible-Changed-By: bkoz
Responsible-Changed-When: Wed Nov  6 08:43:44 2002
Responsible-Changed-Why:
    Jason, can you take a look at this? If not, maybe Nathan? I think this is an issue with overload resolution and temporaries. Seems odd.
State-Changed-From-To: open->analyzed
State-Changed-By: bkoz
State-Changed-When: Wed Nov  6 08:43:44 2002
State-Changed-Why:
    Even simpler:
    
    #include <iostream>
    int main()
    {
      const char* str = "Hello world";
    
    #if 1
      // uses operator << void*
      std::ostream(std::cerr.rdbuf()) << str << std::endl;
    #else
      // uses operator << char*
      std::cerr << str << std::endl;
    #endif
    
      return 0;
    }
    
    

http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&database=gcc&pr=7824


             reply	other threads:[~2002-11-06 16:43 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-11-06  8:43 bkoz [this message]
2002-11-06  9:56 Martin Sebor
2002-11-06 11:31 bkoz
2002-11-06 11:36 Benjamin Kosnik

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=20021106164347.3962.qmail@sources.redhat.com \
    --to=bkoz@gcc.gnu.org \
    --cc=gcc-bugs@gcc.gnu.org \
    --cc=gcc-gnats@gcc.gnu.org \
    --cc=gcc-prs@gcc.gnu.org \
    --cc=jason@gcc.gnu.org \
    --cc=nobody@gcc.gnu.org \
    --cc=phil@philipdunstan.com \
    /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).