B
Ben Voigt [C++ MVP]
Please validate this bug:
https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=473352
Here is the test case:
#pragma managed(push, off)
#include <list>
class C3821
{
std::list<int*>* p;
public:
C3821( size_t n )
: p(new std::list<int*>[n])
{
}
};
#pragma managed(pop)
I've been able to verify that it works in VS2005 SP1 but not in VS2008 SP1,
appreciate anyone who can check it on RTM versions or has VS2010 beta handy.
https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=473352
Here is the test case:
#pragma managed(push, off)
#include <list>
class C3821
{
std::list<int*>* p;
public:
C3821( size_t n )
: p(new std::list<int*>[n])
{
}
};
#pragma managed(pop)
I've been able to verify that it works in VS2005 SP1 but not in VS2008 SP1,
appreciate anyone who can check it on RTM versions or has VS2010 beta handy.