Bug 368422 - source formatters should allow configuration of `const` placement, use it in code completion/implementation helpers
Summary: source formatters should allow configuration of `const` placement, use it in ...
Status: CONFIRMED
Alias: None
Product: kdevelop
Classification: Applications
Component: Language Support: CPP (Clang-based) (show other bugs)
Version: git master
Platform: Other Linux
: NOR wishlist
Target Milestone: ---
Assignee: kdevelop-bugs-null
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-09-07 20:32 UTC by Milian Wolff
Modified: 2016-09-07 20:32 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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()
{
}