[PATCH] Implementation for completion in call context for C++
Francisco Lopes da Silva
francisco.mailing.lists at oblita.com
Thu Jan 8 10:24:08 PST 2015
Basic functor parameter completion was added.
It's currently working for:
struct S { void operator()(int){} };
int main() {
S s;
s(>|<);
}
but not for:
struct S { void operator()(int){} };
int main() {
S{}(>|<);
}
http://reviews.llvm.org/D6880
Files:
lib/Sema/SemaCodeComplete.cpp
test/Index/complete-call.cpp
test/Index/complete-functor-call.cpp
EMAIL PREFERENCES
http://reviews.llvm.org/settings/panel/emailpreferences/
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D6880.17904.patch
Type: text/x-patch
Size: 42290 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20150108/d23a38eb/attachment.bin>
More information about the cfe-commits
mailing list