template smarter, by taking into account which function template
parameters are deducible from the call arguments. For example,
template<typename RandomAccessIterator>
void sort(RandomAccessIterator first, RandomAccessIterator last);
will have a code-completion string like
sort({RandomAccessIterator first}, {RandomAccessIterator last})
since the template argument for its template parameter is
deducible. On the other hand,
template<class X, class Y>
X* dyn_cast(Y *Val);
will have a code-completion string like
dyn_cast<{class X}>({Y *Val})
since the template type parameter X is not deducible from the function
call.
llvm-svn: 82306
17 lines
453 B
C++
17 lines
453 B
C++
// RUN: clang-cc -fsyntax-only -code-completion-dump=1 %s -o - | FileCheck -check-prefix=CC1 %s &&
|
|
// RUN: true
|
|
|
|
namespace std {
|
|
template<typename RandomAccessIterator>
|
|
void sort(RandomAccessIterator first, RandomAccessIterator last);
|
|
|
|
template<class X, class Y>
|
|
X* dyn_cast(Y *Val);
|
|
}
|
|
|
|
void f() {
|
|
// CHECK-CC1: dyn_cast<<#class X#>>(<#Y *Val#>)
|
|
// CHECK-CC1: sort(<#RandomAccessIterator first#>, <#RandomAccessIterator last#>)
|
|
std::
|
|
|