[Bug c++/24986] New: g++ is confused when function is defined inside and outside some namespace and called with '::' prefix

2005-11-21 Thread relf at os2 dot ru
cc Version: 4.0.3 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: relf at os2 dot ru http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24986

[Bug c++/24986] g++ is confused when function is defined inside and outside some namespace and called with '::' prefix

2005-11-21 Thread relf at os2 dot ru
--- Comment #1 from relf at os2 dot ru 2005-11-22 04:33 --- Created an attachment (id=10318) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=10318&action=view) Testcase (bug.cpp) -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24986

[Bug c++/24986] g++ is confused when function is defined inside and outside some namespace and called with '::' prefix

2005-11-22 Thread relf at os2 dot ru
--- Comment #3 from relf at os2 dot ru 2005-11-22 12:10 --- (In reply to comment #2) > I don't think this is a bug as what is happening is that :: is a qualified > name > and qualified namelookup (IIRC) does not find decls which are injected via > using. > It does

[Bug c++/25867] New: g++ messes up member operator with friend operator in spite of having arguments of different types

2006-01-19 Thread relf at os2 dot ru
n: 4.0.3 Status: UNCONFIRMED Severity: major Priority: P3 Component: c++ AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: relf at os2 dot ru http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25867

[Bug c++/25867] g++ messes up member operator with friend operator in spite of having arguments of different types

2006-01-19 Thread relf at os2 dot ru
--- Comment #1 from relf at os2 dot ru 2006-01-20 04:09 --- Created an attachment (id=10679) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=10679&action=view) b.cpp -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25867

[Bug c++/25867] g++ messes up member operator with friend operator in spite of having arguments of different types

2006-01-19 Thread relf at os2 dot ru
--- Comment #2 from relf at os2 dot ru 2006-01-20 04:10 --- Created an attachment (id=10680) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=10680&action=view) b2.cpp -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25867

[Bug c/23054] New: Segmentation fault when large static array is declared

2005-07-24 Thread relf at os2 dot ru
verity: critical Priority: P2 Component: c AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: relf at os2 dot ru CC: gcc-bugs at gcc dot gnu dot org http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23054

[Bug c/23054] Segmentation fault when large static array is declared

2005-07-25 Thread relf at os2 dot ru
--- Additional Comments From relf at os2 dot ru 2005-07-25 07:34 --- (In reply to comment #1) > This is not a bug. You are overflowing the stack. Should it be more intelligent error message like "Stack overflow" ? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23054

[Bug c++/23633] New: map::insert() invalidates reverse_iterators

2005-08-30 Thread relf at os2 dot ru
Summary: map::insert() invalidates reverse_iterators Product: gcc Version: 4.0.2 Status: UNCONFIRMED Severity: normal Priority: P2 Component: c++ AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: relf at os2 dot ru CC: gcc-bugs at gcc dot gnu dot org http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23633

[Bug c++/17122] Unable to compile friend operator within template

2006-01-21 Thread relf at os2 dot ru
--- Comment #10 from relf at os2 dot ru 2006-01-22 04:15 --- Works fine on g++ 3.3.6 but fails on g++ 3.4.5 and 4.0.3. Must be a regression. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17122

[Bug c++/17122] Unable to compile friend operator within template

2006-01-23 Thread relf at os2 dot ru
--- Comment #11 from relf at os2 dot ru 2006-01-24 02:38 --- Let's change returning type of friend operator+ in the original example to foo, i.e., = template clas

[Bug c++/17122] Unable to compile friend operator within template

2006-03-11 Thread relf at os2 dot ru
--- Comment #12 from relf at os2 dot ru 2006-03-12 04:14 --- (In reply to comment #11) > friend foo ::operator+ <>(int, foo); I have changed it to friend foo (::operator+ <>) (int, foo); and now it's being compiled fine. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17122