Hi,
I guess I have another (yet different) namespace related problem..
Using the following code:
--
class Test
{
public:
void funcATest() {}
};
void f()
{
boost::shared_ptr<Test> pTest;
}
--
When I type pTest->, VA doesn't parse anything..
I tried the following:
--
using namespace boost;
void f()
{
shared_ptr<Test> pTest;
}
--
But still nothing..
The real problem is that my goal is to have VA properly parse the following code:
--
class Test
{
public:
boost::shared_ptr<Test> SP;
void funcATest() {}
};
void f()
{
Test::SP pTest;
}
--
The previous samples are merely regression tests for this last one.
Any ideas?