Is there a C++ IDE which handles templates well?

前端 未结 9 1730
被撕碎了的回忆
被撕碎了的回忆 2021-02-13 16:22

Every IDE I\'ve tried fails to provide code-completion when something template-related is used. For example,

boost::shared_ptr ptr;
ptr->[curso         


        
      
      
      
9条回答
  •  难免孤独
    2021-02-13 16:51

    This works in Eclipse CDT, but you may have to explcitly set the include paths under Project->Properties->C/C++ General->Paths and Symbols. Under my env. I had to dig down and explicitly add the include\c++\4.2.1 and include\c++\4.2.1\m68k-elf. Just having the directory specified to the cross compiler root \include did not allow content assist to work. Of course once you add the directories, rebuild the index.

    You might need to check your Windows->Preferenes->C/C++->Indexer Cache Limit settings and increase them if they are too small. I have mine set to a max of 256MB.

提交回复
热议问题