This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/11357] no conversion of build-in binary operator argument attempted
- From: "gdr at integrable-solutions dot net" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 10 Sep 2003 03:07:23 -0000
- Subject: [Bug c++/11357] no conversion of build-in binary operator argument attempted
- References: <20030628090748.11357.d.frey@gmx.de>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11357
------- Additional Comments From gdr at integrable-solutions dot net 2003-09-10 03:07 -------
Subject: Re: no conversion of build-in binary operator argument attempted
"bangerth at dealii dot org" <gcc-bugzilla@gcc.gnu.org> writes:
| What is confusing is that we are looking for a match
| float * A
| but the message says that we are looking for
| 1.0 * a
| i.e. it gives values instead of types.
Printing expressions is the right thing to do. However, the defect is
in printing 1.0 instead of 1.0f.
-- Gaby