Golevka / emacs-clang-complete-async

An emacs plugin to complete C and C++ code using libclang
360 stars 71 forks source link

Fix C++ parent class method completion. #87

Open baohaojun opened 8 years ago

baohaojun commented 8 years ago

For e.g., in Qt, QFile has a close() method inherited:

void QFileDevice::close();
void QIODevice::close();

Now, when close() is completed, it turns out to be close:close(), because :close() instead of () is incorrectly parsed as the argument.

Signed-off-by: Bao Haojun baohaojun@gmail.com