[Bug c++/42539] C++0x: I tried to implement is_explicitly_convertible, but all I got was this lousy ICE
d dot frey at gmx dot de
gcc-bugzilla@gcc.gnu.org
Tue Dec 29 15:05:00 GMT 2009
------- Comment #1 from d dot frey at gmx dot de 2009-12-29 15:05 -------
Note that the code is actually quite broken, the main problem which causes the
ICE is:
decltype( impl::select< From, To > )
which should read something like:
decltype( impl::select< From, To >() )
I meanwhile have a working implementation of is_explicitly_convertible for GCC
4.4.2 (in case someone is interested), so this bug is not a big problem, but
since it is an ICE, one might still want to fix it :)
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42539
More information about the Gcc-bugs
mailing list