public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "scott at stg dot net" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/37043]  New: fails to find operator match when constructing object on the fly
Date: Wed, 06 Aug 2008 22:11:00 -0000	[thread overview]
Message-ID: <bug-37043-16567@http.gcc.gnu.org/bugzilla/> (raw)

Code below fails with "no match for operator>>", although works in msvc.  If
I'm doing something wrong or there is simple workaround please let me know. 
scott@stg.net.

#include <stdio.h>

class FooBar
{
public:
        FooBar(const char *s)
        {
                printf("Constructed: %s\n",s);
        }
        void Accept(const char *s)
        {
                printf("Passed: %s\n",s);
        }
};

FooBar& operator>> (const char *s,FooBar& dest)
{
        dest.Accept(s);
        return(dest);
}

int main(int argc,char **argv)
{
        FooBar test1("one");

        "A">>test1;

        "B">>FooBar("two");
}


-- 
           Summary: fails to find operator match when constructing object on
                    the fly
           Product: gcc
           Version: 4.1.2
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: scott at stg dot net


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


             reply	other threads:[~2008-08-06 22:11 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-08-06 22:11 scott at stg dot net [this message]
2008-08-06 22:14 ` [Bug c++/37043] " pinskia at gcc dot gnu dot org
2008-08-07 13:32 ` scott at stg dot net
2008-08-07 13:55 ` scott at stg dot net
2008-08-07 15:21 ` schwab at suse dot de

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-37043-16567@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).