On Jun 21, 2015, at 12:15:56, Peter Wagner <[email protected]> wrote: > > On this topic, has anybody ever figured out a way to see values inside of > allocated memory on the XCode debugger? Code Warrior had a great system > (command-A or fn-A) that let you view memory allocated "vectors" and > "matrices" (and hyper-matrices!) as if they were just normally defined > vectors, matrices, etc. That was invaluable during debugging.
You mean in a std::vector? You have to dig down to find the actual pointer member, then you can View Memory of *Blah on it. How deep you have to go depends on the implementation of the vector and what its object type is. So good luck. -- Steve Mills Drummer, Mac geek _______________________________________________ Do not post admin requests to the list. They will be ignored. Xcode-users mailing list ([email protected]) Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/xcode-users/archive%40mail-archive.com This email sent to [email protected]
