public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
From: David Abrahams <dave@boost-consulting.com>
To: nobody@gcc.gnu.org
Cc: gcc-prs@gcc.gnu.org,
Subject: Re: c++/9278: dependent type in conversion operator bug
Date: Tue, 14 Jan 2003 02:36:00 -0000	[thread overview]
Message-ID: <20030114023602.20243.qmail@sources.redhat.com> (raw)

The following reply was made to PR c++/9278; it has been noted by GNATS.

From: David Abrahams <dave@boost-consulting.com>
To: Wolfgang Bangerth <bangerth@ticam.utexas.edu>
Cc: "Joseph S. Myers" <jsm28@cam.ac.uk>,  <gcc-bugs@gcc.gnu.org>,
	  <gcc-gnats@gcc.gnu.org>
Subject: Re: c++/9278: dependent type in conversion operator bug
Date: Mon, 13 Jan 2003 21:25:30 -0500

 Wolfgang Bangerth <bangerth@ticam.utexas.edu> writes:
 
 >> > Indeed a very obscure feature. (Although, I must admit that, I desperately 
 >> > needed something like that not too long ago and had to invent various 
 >> > template metaprogramming hoops to work around...)
 >> 
 >> I needed exactly that yesterday, which is why it came up ;-)
 >> Using SFINAE to rule out certain conversions was my game, but it
 >> didn't fly :(
 >
 > SFINAE???
 
 "Substitution Failure Is Not An Error"
 
 basically you can take an overload out of the overload set by causing
 an invalid type computation in one of the arguments or return type:
 
 template <bool = true, class T>
 struct enable_if { typedef T type; };
 template <class T>
 struct enable_if<false,T> {};
 
 // Define addition for all enums, but only for enums
 template <class T>
 typename enable_if<boost::is_enum<T>::value, T>::type
 operator+(T x, T y) { return T(x+y); }
 
 > In my case, I wanted to make things more uniform in Functor classes: when 
 > you call a function, it either returns a value, or void. So this does not
 > go together
 >   RETTYPE ret_val = function(args)
 > if RETTYPE==void. What an annoying difference, and how convenient would it 
 > be if there were "void variables", i.e. objects to which you can assign 
 > the result of a void expression :-)
 
 Oh.  But you are allowed to write "return function(args);" even if
 function returns void.
 
 > Some template trickery and specilization can get one around this, however.
 
 Been there, done that.
 
 -- 
                        David Abrahams
    dave@boost-consulting.com * http://www.boost-consulting.com
 Boost support, enhancements, training, and commercial distribution
 


             reply	other threads:[~2003-01-14  2:36 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-01-14  2:36 David Abrahams [this message]
  -- strict thread matches above, loose matches on Subject: below --
2003-01-14  0:36 Wolfgang Bangerth
2003-01-14  0:26 David Abrahams
2003-01-13 23:06 Wolfgang Bangerth
2003-01-13 22:56 Joseph S. Myers
2003-01-12 23:52 bangerth
2003-01-12  3:56 dave

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=20030114023602.20243.qmail@sources.redhat.com \
    --to=dave@boost-consulting.com \
    --cc=gcc-prs@gcc.gnu.org \
    --cc=nobody@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).