T O P I C R E V I E W |
beylevem |
Posted - Feb 10 2010 : 6:53:36 PM This post seems strangely connected with "Test Suite Available"
I had a member function
.h: void Connect(Index, Fluid*) .cpp: void Class::Connect(Index i, Fluid* fld)
and I used Change Signature to add an argument:
>>> void Connect(Index, Fluid*, Real newVar) <<<
what I get is: .h: void Connect(Index, Fluid*, Real newVar) .cpp: void Class::Connect(Index, Fluid*, Real newVar)
what I expect is .h: void Connect(Index, Fluid*, Real newVar) .cpp: void Connect(Index i, Fluid* fld, Real newVar)
VA should be able to figure out that it's the thitd argument that has been changed/added
|
2 L A T E S T R E P L I E S (Newest First) |
sean |
Posted - Nov 18 2013 : 3:17:48 PM Change Signature was overhauled in build 2007. case=9327 is fixed in build 2007. |
accord |
Posted - Feb 11 2010 : 8:00:31 PM I am seeing the same effect here. Thank you for the clear description.
case=9327 |
|
|