ctrlp-funky icon indicating copy to clipboard operation
ctrlp-funky copied to clipboard

Request: Please add support for finding templated functions in header files

Open kshenoy opened this issue 7 years ago • 2 comments

Is there some way to support finding templated functions in header files?

kshenoy avatar Jun 15 '17 19:06 kshenoy

You mean templated function is like this? https://msdn.microsoft.com/en-us/library/y2se4kz7.aspx

tacahiroy avatar Jul 21 '17 00:07 tacahiroy

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;  
} 

kshenoy avatar Jul 21 '17 01:07 kshenoy