File: bug872494.cpp

package info (click to toggle)
geany 2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 39,300 kB
  • sloc: ansic: 168,600; cpp: 77,562; sh: 5,344; makefile: 1,694; cs: 1,233; javascript: 1,024; python: 580; f90: 537; vhdl: 504; sql: 503; lisp: 436; fortran: 389; php: 278; ada: 201; ruby: 163; java: 131; asm: 131; perl: 119; cobol: 88; tcl: 77; erlang: 73; xml: 66; ml: 27; sed: 16; pascal: 15; haskell: 6
file content (43 lines) | stat: -rw-r--r-- 1,310 bytes parent folder | download | duplicates (17)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*
Bugs item #872494, was opened at 2004-01-07 16:33
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=106556&aid=872494&group_id=6556

Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Igor Proskuriakov (proskig)
Assigned to: Nobody/Anonymous (nobody)
Summary: C++ class template specialization

Initial Comment:
Hi, 
some time ago I posted a bug related to C++ member 
template, which was fixed using patch bug849591.diff. 
Many thanks - it really fixed the problem ! 
Now about a different one.
When parsing C++ file ctags seems to ignore template 
specialization, but I think that it maybe useful to add it 
as a configurable feature. Another problem is that 
template specialization seems to confuse patched 
version of ctags (patch bug849591.diff). When running a 
patched version against the following file
*/
template<class T> class TemplClass { double i;};

template<> class TemplClass< char* > { int i;};

class FooClass2{};
/*
it does not generate tag for FooClass2 while ctags 5.5.2 
does generate tag for FooClass2. Neither of them 
generate tag for specialization TemplClass<char *>.

thanks in advance and let me know should you need 
more info!

Igor
*/