https://bugs.kde.org/show_bug.cgi?id=368422
Bug ID: 368422
Summary: source formatters should allow configuration of
`const` placement, use it in code
completion/implementation helpers
Product: kdevelop
Version: git master
Platform: Other
OS: Linux
Status: UNCONFIRMED
Severity: wishlist
Priority: NOR
Component: Language Support: CPP (Clang-based)
Assignee: [email protected]
Reporter: [email protected]
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()
{
}
--
You are receiving this mail because:
You are watching all bug changes.