Use consistent shadows across Geany
[geany-mirror.git] / tests / ctags / bug872494.cpp
blob2f12d198b72b3b6f6fc381593cdc38b2ac10d5a9
1 /*
2 Bugs item #872494, was opened at 2004-01-07 16:33
3 Message generated for change (Tracker Item Submitted) made by Item Submitter
4 You can respond by visiting:
5 https://sourceforge.net/tracker/?func=detail&atid=106556&aid=872494&group_id=6556
7 Category: None
8 Group: None
9 Status: Open
10 Resolution: None
11 Priority: 5
12 Submitted By: Igor Proskuriakov (proskig)
13 Assigned to: Nobody/Anonymous (nobody)
14 Summary: C++ class template specialization
16 Initial Comment:
17 Hi,
18 some time ago I posted a bug related to C++ member
19 template, which was fixed using patch bug849591.diff.
20 Many thanks - it really fixed the problem !
21 Now about a different one.
22 When parsing C++ file ctags seems to ignore template
23 specialization, but I think that it maybe useful to add it
24 as a configurable feature. Another problem is that
25 template specialization seems to confuse patched
26 version of ctags (patch bug849591.diff). When running a
27 patched version against the following file
29 template<class T> class TemplClass { double i;};
31 template<> class TemplClass< char* > { int i;};
33 class FooClass2{};
35 it does not generate tag for FooClass2 while ctags 5.5.2
36 does generate tag for FooClass2. Neither of them
37 generate tag for specialization TemplClass<char *>.
39 thanks in advance and let me know should you need
40 more info!
42 Igor