bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#5605: etags of emacs 23.1 misses template specializations


From: Bob
Subject: bug#5605: etags of emacs 23.1 misses template specializations
Date: Fri, 19 Feb 2010 13:28:29 -0800

Run "etags" of emacs 23.1 on the attached "Foo.H" file .

 

The resulting TAGS file indicates "Foo.H" is empty.

 

Seems to me it should show two definitions for the 2 specializations of `Worker`.

 

----------- TAGS --------------
^L

Foo.H,0

----------------------------------

 

----------- Foo.H ----------------

template<

  class _A,

  class _B = Select<_A>::Result

  >

class Worker;

 

 

template<class _A>

class Worker<_A,int>

{

};

 

template<class _A>

class Worker<_A,double>

{

};

---------------------------------------

Attachment: Foo.H
Description: Text document


reply via email to

[Prev in Thread] Current Thread [Next in Thread]