vote up 2 vote down star
1

How to get Eclipse CDT to treat shared_ptr as T * for syntax completion?

I'm using windows in this instance. I have 1.39 in the "Program Files" folder. I am about to try 1.37.

I am using the Galileo release of Eclipse. Also, I am only editing and browsing the source in Eclipse and building in VC++ Express. (but that is another story)

flag

58% accept rate
Do you have the include path to the boost files in your project include path? My boost libraries are in usr/include/ and I include them as #include <boost/shared_ptr.hpp> – RC Oct 6 at 12:06

2 Answers

vote up 2 vote down check

What version of boost are you using?

According to this thread:

Turns out there is something about Boost 1.39 that the CDT indexer does not like.
If I allow CDT to index boost 1.36 then auto-complete works for typedef'ed elements like below.
If I allow it to index only 1.39 then the same auto-completion does not work.

(Happens with CDT5 or 6)

link|flag
vote up 1 vote down

Eclipse CDT indexing of boost libraries starts struggling with version 1.37 (or even 1.36, couldn't' verify that) already.

My workaround to benefit from code completion while using an up-to-date boost version (1.39) is the following one:

  • I have got two boost versions (1.35 and 1.39) on my computer.
  • In the Debug Build Configuration (Settings/Directories) I set the include path to the old boost version.
  • In the Release Build Configuration I set the include path to the actual boost library.
  • I set the Indexer Option "Build Configuration for the Indexer" to "Use fixed build configuration" > Debug

The indexer uses now the old library for indexing and code completion but the release version will still be compiled with the recent boost version. At least this worked for me. Please verify this for your build configuration, if you're suffering the same problem!!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.