[kdevelop] [Bug 370334] Implicitly declared class considered as subclass

2019-04-22 Thread KiloAlphaIndia
https://bugs.kde.org/show_bug.cgi?id=370334 KiloAlphaIndia changed: What|Removed |Added CC||k...@stierand.com --- Comment #3 from KiloAlph

[kdevelop] [Bug 370334] Implicitly declared class considered as subclass

2017-01-02 Thread Kevin Funk
https://bugs.kde.org/show_bug.cgi?id=370334 Kevin Funk changed: What|Removed |Added Status|UNCONFIRMED |CONFIRMED Ever confirmed|0

[kdevelop] [Bug 370334] Implicitly declared class considered as subclass

2017-01-02 Thread KiloAlphaIndia
https://bugs.kde.org/show_bug.cgi?id=370334 --- Comment #2 from KiloAlphaIndia --- Ups. Sorry failed to format it correctly I have now looked this up in the (draft) C++ Standard N3797. The section 3.4.4 paragraph 3 gives a very obvious example: struct Node { struct Node* Next; // OK: Refers

[kdevelop] [Bug 370334] Implicitly declared class considered as subclass

2017-01-02 Thread KiloAlphaIndia
https://bugs.kde.org/show_bug.cgi?id=370334 --- Comment #1 from KiloAlphaIndia --- I have now looked this up in the (draft) C++ Standard N3797. The section 3.4.4 paragraph 3 gives a very obvious example: struct Node { struct Node* Next; // OK: Refers to Node at global scope struct Data* Data; //