Bug 368422

Summary: source formatters should allow configuration of `const` placement, use it in code completion/implementation helpers
Product: [Applications] kdevelop Reporter: Milian Wolff <mail>
Component: Language Support: CPP (Clang-based)Assignee: kdevelop-bugs-null
Status: CONFIRMED ---    
Severity: wishlist    
Priority: NOR    
Version First Reported In: git master   
Target Milestone: ---   
Platform: Other   
OS: Linux   
Latest Commit: Version Fixed In:
Sentry Crash Report:

Description Milian Wolff 2016-09-07 20:32:40 UTC
from bug 359067

Reproducible: Always

Steps to Reproduce:
#include <string>

class someClass
{
    std::string const & getFoo();
};

use implement function

Actual Results:  

const std::string & someClass::getFoo()
{
}


Expected Results:  

std::string const & someClass::getFoo()
{
}