In class MyClass there is function: declaration (header file) int myFunction(); Definition (cpp file) int MyClass::myFunction() { .., } When I add "const" string at end of name the function in definition or declaration then nothing happen, only function is highlighted by parser as incorrect. But when the function is const then if I remove const then "Completion Helper" pops up. Reproducible: Always Actual Results: Nothing happen, only function is highlighted by parser as incorrect. Expected Results: "Completion Helper" should pop up and suggest "Update declaration/definition" with const KDevelop and KDevplatform cloned at 30.11.2015
In the newest version of KDevelop (git-master r263.gf8afa94aee) I can see only red message referring to "Problem semantic analysis". No any helper allowing to update declaration or definition where is missing "const".