[Bug libstdc++/90857] New: stl::forward_list::erase_after crashes if __pos == __last

2019-06-12 Thread jose.dapena at lge dot com
Priority: P3 Component: libstdc++ Assignee: unassigned at gcc dot gnu.org Reporter: jose.dapena at lge dot com Target Milestone: --- Created attachment 46483 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=46483&action=edit Test case In case we invoke eras

[Bug libstdc++/85970] Cannot move a std::unique_ptr to insert into a map

2018-05-29 Thread jose.dapena at lge dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85970 Jose Dapena Paz changed: What|Removed |Added Status|RESOLVED|VERIFIED --- Comment #3 from Jose Dape

[Bug libstdc++/85970] Cannot move a std::unique_ptr to insert into a map

2018-05-29 Thread jose.dapena at lge dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85970 Jose Dapena Paz changed: What|Removed |Added Component|c++ |libstdc++ --- Comment #1 from Jose Dap

[Bug c++/85970] New: Cannot move a std::unique_ptr to insert into a map

2018-05-29 Thread jose.dapena at lge dot com
Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: jose.dapena at lge dot com Target Milestone: --- Created attachment 44206 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=44206&action=edit Test case Trying to insert to an std::map with value type std::uni

[Bug c++/84849] New: Ambiguous resolution of braze initializer list to a class with explicit copy/move constructors

2018-03-13 Thread jose.dapena at lge dot com
Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: jose.dapena at lge dot com Target Milestone: --- Created attachment 43644 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=43644&action=edit Te

[Bug c++/84709] Cannot define method with same name of previously using declared class

2018-03-05 Thread jose.dapena at lge dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=84709 --- Comment #2 from Jose Dapena Paz --- OK, just for understanding all the edges of this... So the fact that in namespace B A::Foo the full A::Foo name is still accessible is not relevant right?

[Bug c++/84709] New: Cannot define method with same name of previously using declared class

2018-03-05 Thread jose.dapena at lge dot com
Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: jose.dapena at lge dot com Target Milestone: --- This test case is failing with g++ 7.3.0: namespace A { class Foo { ... }; } using A::Foo namespace B { class Bar