comparing old and new values in __success macro
How do I express the condition that a parameter passed by reference remains unchanged after the function returns?
something like this?
__success(__oldvalue(parameter) == __newvalue(parameter))
something like this?
__success(__oldvalue(parameter) == __newvalue(parameter))
Instead you can try doing this:- make the parameter a "const" so that it remains unchanged after the function returns.
Hope this helps,
Sarita