ctrlp-funky
ctrlp-funky copied to clipboard
Request: Please add support for finding templated functions in header files
Is there some way to support finding templated functions in header files?
You mean templated function is like this? https://msdn.microsoft.com/en-us/library/y2se4kz7.aspx
Yes, those. Note that most people put the template statement on another line eg.
template< class T >
void MySwap( T& a, T& b ) {
T c(a);
a = b;
b = c;
}