Code completion doesn't work when method type is already entered.
A.hpp
class Foo {
int fooMethod();
};
In A.cpp file, if i try to enter int F..., the method int Foo::fooMethod() {} doesn't appear on code completion list. It only appears when I didn't enter the type 'int'.
Is this a bug or intended feature?
请先登录再写评论。