Hi,
I would like to profit from Eclipse's code completion for boost:shared_pointer in Eclipse 3.5 with CDT 6.0. Eclipse doesn't offer any completion while I'm writing the following code:
#include <boost/shared_ptr.hpp>
#include "A.h"
typedef boost::shared_ptr<A> aPTR;
int main() {
aPTR test(new A);
test->ge.... // no completion (there is a getter in class A)
return 0;
}
The funny thing: My old Eclipse 3.4 with CDT 5.0 on my other computer performs code completion for boost-stuff without any problem.
Do I need to proceed any configuration steps to get code completion with boost work? Do I have to index the boost files in /usr/include/boost/ in a special kind? Is there a way to force Eclipse to re-index the stuff.
Finally: Yes I know this Post but I'm missing any concrete "next steps" in it.
thanks