Hey,
trying out VA, seems like a neat tool. I do a lot of coding in
c++/cli, and seems like VA does a far better job than VS.
However, it seems that finalizers are not recognized/supported ?
Example class definition:
public ref class EncodedImage
{
private:
GraphicsNative::EncodedImage* m_native;
EncodedImage();
protected:
!EncodedImage(); // Finalizer declaration
public:
~EncodedImage();
};
The attached screenshot shows that m_native is not recognized within the finalizer.
This is not a big problem, but is there any plans to implement support for this ? (Or, is there something I have overseen)
Thanks !
--Oyvind