T O P I C R E V I E W |
Suma |
Posted - Jul 30 2013 : 07:59:50 AM Often I write constructors which do only member wise initialization from parameters. Would it be possible to have refactorization for this?
class A { TypeX x; TypeY y; };
Refactorization would create:
A(TypeX x, TypeY y):x(x),y(y){}
|
1 L A T E S T R E P L I E S (Newest First) |
feline |
Posted - Jul 30 2013 : 08:32:48 AM This is a sensible suggestion. We are considering adding a refactoring command to do this:
case=14340 |
|
|