Suppose I have this:
// forward declaration
int function(int x, int y = 2);
...and in my code some places I have this:
function(1);
function(2, 5);
function(3);
function(4);
function(5, 11);
...would it be possible to allow me to refactor the forward declaration into this? :
// forward declaration
int function(int x, int y);
...and have it automatically change the code to this? :
function(1, 2);
function(2, 5);
function(3, 2);
function(4, 2);
function(5, 11);
...so it inserts the parameters which were defined in the header?
Best regards,
Rick C. Hodgin