public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "daniel.kruegler at googlemail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/58713] error: cannot bind ‘std::ostream {aka std::basic_ostream<char>}’ lvalue to ‘std::basic_ostream<char>&&’
Date: Mon, 14 Oct 2013 13:17:00 -0000	[thread overview]
Message-ID: <bug-58713-4-j3HHSlUFut@http.gcc.gnu.org/bugzilla/> (raw)
In-Reply-To: <bug-58713-4@http.gcc.gnu.org/bugzilla/>

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

--- Comment #6 from Daniel Krügler <daniel.kruegler at googlemail dot com> ---
(In reply to Daniel Krügler from comment #5)
> Thanks for your test, Marc. I will reflect upon the problem in a bit more
> detail

My current guess is that my suggested approach should work, assuming a proper
helper trait template will be used. Here is the model code that I used for
testing:

//---------------------------
#include <type_traits>
#include <utility>

namespace xstd {

template<class CharT = char>
struct OStream 
{
  OStream& operator<<(int);
  OStream& operator<<(short);
  OStream& operator<<(double);
  OStream& operator<<(const void*);
};

struct is_ostreamable_impl 
{
  template<class CharT, class T, class =
    decltype(std::declval<OStream<CharT>&>() << std::declval<T>())>
  static std::true_type test(int);

  template<class, class>
  static std::false_type test(...);
};

template<class CharT, class T>
struct is_ostreamable 
  : decltype(is_ostreamable_impl::test<CharT, T>(0))::type
{  
};

template<class CharT, class T,
  typename std::enable_if<
    is_ostreamable<CharT, const T&>::value, 
    bool
  >::type = false>
  OStream<CharT>& operator<<(OStream<CharT>&& os, const T& t) 
{
  return os << t;
}

OStream<> out;

}

struct A {};

int main() {
  A a;
  xstd::out << 1;
  xstd::out << a;
}
//---------------------------

The diagnostics of my gcc current 4.9.0 is

<quote>
main.cpp||In function 'int main()':|
main.cpp|50|error: no match for 'operator<<' (operand types are
'xstd::OStream<>' and 'A')|
main.cpp|50|note: candidates are:|
main.cpp|9|note: xstd::OStream<CharT>& xstd::OStream<CharT>::operator<<(int)
[with CharT = char]|
main.cpp|9|note:   no known conversion for argument 1 from 'A' to 'int'|
main.cpp|10|note: xstd::OStream<CharT>& xstd::OStream<CharT>::operator<<(short
int) [with CharT = char]|
main.cpp|10|note:   no known conversion for argument 1 from 'A' to 'short int'|
main.cpp|11|note: xstd::OStream<CharT>&
xstd::OStream<CharT>::operator<<(double) [with CharT = char]|
main.cpp|11|note:   no known conversion for argument 1 from 'A' to 'double'|
main.cpp|12|note: xstd::OStream<CharT>& xstd::OStream<CharT>::operator<<(const
void*) [with CharT = char]|
main.cpp|12|note:   no known conversion for argument 1 from 'A' to 'const
void*'|
main.cpp|36|note: template<class CharT, class T, typename
std::enable_if<xstd::is_ostreamable<CharT, const T&>::value, bool>::type
<anonymous> > xstd::OStream<CharT>& xstd::operator<<(xstd::OStream<CharT>&&,
const T&)|
main.cpp|36|note:   template argument deduction/substitution failed:|
main.cpp|35|error: no type named 'type' in 'struct std::enable_if<false,
bool>'|
main.cpp|35|note: invalid template non-type parameter|
</quote>
>From gcc-bugs-return-431655-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Mon Oct 14 13:18:50 2013
Return-Path: <gcc-bugs-return-431655-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 19904 invoked by alias); 14 Oct 2013 13:18:50 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 19854 invoked by uid 48); 14 Oct 2013 13:18:47 -0000
From: "ro at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libfortran/58015] FAIL: gfortran.dg/round_4.f90: Unsatisfied symbol "nextafterl"
Date: Mon, 14 Oct 2013 13:18:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libfortran
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ro at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 4.9.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cf_gcctarget bug_status cf_reconfirmed_on cc cf_gcchost target_milestone everconfirmed cf_gccbuild
Message-ID: <bug-58015-4-m7rdtjqHb2@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-58015-4@http.gcc.gnu.org/bugzilla/>
References: <bug-58015-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: 7bit
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2013-10/txt/msg00799.txt.bz2
Content-length: 1032

http://gcc.gnu.org/bugzilla/show_bug.cgi?idX015

Rainer Orth <ro at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Target|hppa64-hp-hpux11.11         |hppa64-hp-hpux11.11,
                   |                            |*-*-solaris2.9
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2013-10-14
                 CC|                            |ro at gcc dot gnu.org
               Host|hppa64-hp-hpux11.11         |hppa64-hp-hpux11.11,
                   |                            |*-*-solaris2.9
   Target Milestone|---                         |4.9.0
     Ever confirmed|0                           |1
              Build|hppa64-hp-hpux11.11         |hppa64-hp-hpux11.11,
                   |                            |*-*-solaris2.9

--- Comment #5 from Rainer Orth <ro at gcc dot gnu.org> ---
Also on Solaris 9, both SPARC and x86.

  Rainer


  parent reply	other threads:[~2013-10-14 13:17 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-10-13 12:20 [Bug c++/58713] New: " ali.baharev at gmail dot com
2013-10-14  0:10 ` [Bug c++/58713] " redi at gcc dot gnu.org
2013-10-14  0:22 ` ali.baharev at gmail dot com
2013-10-14  6:29 ` daniel.kruegler at googlemail dot com
2013-10-14  7:04 ` glisse at gcc dot gnu.org
2013-10-14  7:09 ` daniel.kruegler at googlemail dot com
2013-10-14 13:17 ` daniel.kruegler at googlemail dot com [this message]
2013-10-14 13:26 ` redi at gcc dot gnu.org

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-58713-4-j3HHSlUFut@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).