https://bugs.kde.org/show_bug.cgi?id=368544
Bug ID: 368544
Summary: Implementation generator drops parameters of method
template
Product: kdevelop
Version: git master
Platform: Compiled Sources
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: NOR
Component: Language Support: CPP (Clang-based)
Assignee: [email protected]
Reporter: [email protected]
Consider the following example:
class Klass {
public:
template <typename T>
void func(int a, T x, int b) const;
};
When I press Ctrl+Space, I'm offered to implement "func()" without parameters,
see screenshot.
When I press Enter, the following code is inserted:
void Klass::func() const
{
}
Reproducible: Always
--
You are receiving this mail because:
You are watching all bug changes.