Details
-
Bug
-
Resolution: Done
-
Not Evaluated
-
None
-
Qt Creator 2.5.1
-
None
-
OSX
Description
Create a class, foo, with a member function taking a templates parameter:
class Foo {
void Func(std::pair<int32_t, int32_t> size);
};
Right-click on Func and choose Refactor->Add Definition. This will create the implementation in the cpp file but will ignore the template arguments:
void Foo::Func(std::pair size)
{
}
This should be:
void Foo::Func(std::pair<int32_t, int32_t> size)
{
}
Attachments
Issue Links
- is replaced by
-
QTCREATORBUG-6784 "Apply function signature change" does not work for boost::shared_ptr
-
- Closed
-