涉及模板参数的内容辅助问题

时间:2014-09-25 16:33:37

标签: c++ eclipse c++11 eclipse-cdt content-assist

我正在使用Eclipse Luna(4.4.0)CDT,而我正在使用C ++ 11进行编码。

有时,当涉及模板类时,内容辅助不起作用。这是一个例子:

template<class T>
class Test {
    vector<T> test1;

    void blah() {
        vector<T> test2 = test1;
        test2. //content assist finds the members of vector<T>
        test1. //content assist finds nothing
    }
};

如果我打电话,代码仍会编译,例如test1.size()this->test1.等变体也不起作用。

如何让内容辅助工作?

0 个答案:

没有答案