This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/52522] Overloaded functions called with initializer lists considered ambiguous
- From: "daniel.kruegler at googlemail dot com" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Wed, 07 Mar 2012 18:41:21 +0000
- Subject: [Bug c++/52522] Overloaded functions called with initializer lists considered ambiguous
- Auto-submitted: auto-generated
- References: <bug-52522-4@http.gcc.gnu.org/bugzilla/>
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52522
Daniel KrÃgler <daniel.kruegler at googlemail dot com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |daniel.kruegler at
| |googlemail dot com
--- Comment #2 from Daniel KrÃgler <daniel.kruegler at googlemail dot com> 2012-03-07 18:41:21 UTC ---
The cause for this problem is the currently unconstrained constructor
template<class InputIter>
vector(InputIter, InputIter);
but I need to investigate whether this is a language or compiler problem. In
this case the problem should be fixed, once this constructor becomes
constrained (There is work on this in progress, but I have not the bug id right
at my hands).