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
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
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
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
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
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?
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