You must be registered to post a reply. Click here to register.
T O P I C R E V I E W
eve
Posted - Jun 15 2007 : 05:45:07 AM Hi,
I noticed that in the VA View the members of a struct are sorted alphabetically. It seems to me that it is more logical to keep the order as in the struct definition because then the VA View can be used to decipher struct initialisation constructions.
For example:
struct Test { int z; int a; };
Test t = { 1, 2 };
If you now hover over 'Test' then VA View will confusingly show something like this:
Test \\- a \\- z
From which you might conclude that a will become 1 and z will become 2, where it is actually the opposite.