https://bugs.kde.org/show_bug.cgi?id=410269
Bug ID: 410269
Summary: Code completion doesn't work with designated
initializers in C99
Product: kdevelop
Version: unspecified
Platform: Other
OS: Linux
Status: REPORTED
Severity: normal
Priority: NOR
Component: Code completion
Assignee: [email protected]
Reporter: [email protected]
Target Milestone: ---
SUMMARY
I have this code:
typedef struct{
char a_c;
char b_c;
} chars;
chars c_array [] =
{
{.a_c = 'a', .b_c = 'b'}
};
Although the struct members are parsed after all, while I am typing them, I get
zero hints from the IDE.
OBSERVED RESULT
No code completion for designated initializers in C99.
EXPECTED RESULT
IDE should give a hint about what members struct Foo has.
C profile is set to C99 in parser settings.
--
You are receiving this mail because:
You are watching all bug changes.