| Summary: | Cannot use function-completion within namespace scope | ||
|---|---|---|---|
| Product: | [Applications] kdevelop | Reporter: | Weng Xuetian <wengxt> |
| Component: | Language Support: CPP (Clang-based) | Assignee: | kdevelop-bugs-null |
| Status: | CONFIRMED --- | ||
| Severity: | normal | CC: | lussier.serge, mail |
| Priority: | NOR | ||
| Version First Reported In: | 5.0.3 | ||
| Target Milestone: | --- | ||
| Platform: | Other | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
Wow! This bug is still marked as "unconfirmed" ????? I've just created a new bug ( Bug ID: 383043 ) about the very same ...bug ... What's happening ? Just put this bug ( two tickets now on it + one mostly 100% related indirectly to this bug; ... ) hidden under the carpet and completely ignore it ? This bug and the two other related bug-id must not be "normal" but really as critical because that kind of bug is touching the Fundamentals of CPP-SUPPORT in the IDE... Hello ? *** Bug 383043 has been marked as a duplicate of this bug. *** Yes, it's broken. Patches welcome. Screaming doesn't help ... it annoys me as well ... |
header: a.h namespace ns { class A { public: A(); }; } source: a.cpp #include "a.h" namespace ns { <--- move cursor here and type "A", I expect "A::A()" would be inserted. } When I tried to use code completion to insert a function definition stub, it won't work. It only works in a anonymous namespace.