~ubuntu-branches/ubuntu/quantal/aspectc++/quantal

« back to all changes in this revision

Viewing changes to AspectC++/tests/MatchExpr/feature.ref

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2008-04-10 17:40:52 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20080410174052-xdnsm7oi8hauyyf1
Tags: 1.0pre4~svn.20080409+dfsg-3
Fix another missing include, this time in Ag++/StdSystem.cc

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
const/volatile function qualifiers:
8
8
-----------------------------------
9
9
FUNC void C::f () is matched by ...
 
10
'% C::f()'
10
11
'% ...::%(...)'
11
 
'% C::f()'
12
12
FUNC void C::f() const is matched by ...
13
 
'% ...::%(...)'
14
13
'% C::f() const'
15
14
'% C::f()'
 
15
'% ...::%(...)'
16
16
FUNC void C::f() volatile is matched by
17
 
'% ...::%(...)'
18
17
'% C::f() volatile'
19
18
'% C::f()'
 
19
'% ...::%(...)'
20
20
FUNC void C::f() const volatile is matched by
21
 
'% ...::%(...)'
22
21
'% C::f() const volatile'
23
22
'% C::f() volatile'
24
23
'% C::f() const'
25
24
'% C::f()'
 
25
'% ...::%(...)'
26
26
==============================================================
27
27
qualified names with '...'
28
28
--------------------------
29
29
FUNC void N1::N2::Inside::o () is matched by ...
30
 
'% ...::%(...)'
31
30
'void N1::...::Inside::...::o ()'
32
31
'void ...::N2::...::% ()'
33
32
'void ...::N1::...::o ()'
34
33
'void N1::...::o ()'
35
34
'void N1::N2::Inside::o ()'
 
35
'% ...::%(...)'
36
36
FUNC void N1::N2::Inside::p () is matched by ...
 
37
'void ...::N2::...::% ()'
37
38
'% ...::%(...)'
38
 
'void ...::N2::...::% ()'
39
39
FUNC void N3::o () is matched by ...
40
40
'% ...::%(...)'
41
41
FUNC void N3::p () is matched by ...
44
44
'% ...::%(...)'
45
45
'% %(...)'
46
46
FUNC void p () is matched by ...
47
 
'% ...::%(...)'
48
 
'% %(...)'
49
47
'void p ()'
 
48
'% ...::%(...)'
 
49
'% %(...)'
50
50
==============================================================
51
51
const / non-const function results
52
52
----------------------------------
53
53
FUNC const char r1 () is matched by ...
 
54
'const % %()'
54
55
'% ...::%(...)'
55
56
'% %(...)'
56
 
'const % %()'
57
57
FUNC const float r2 () is matched by ...
58
 
'% ...::%(...)'
59
 
'% %(...)'
60
58
'const float %()'
61
59
'float %()'
62
60
'const % %()'
 
61
'% ...::%(...)'
 
62
'% %(...)'
63
63
FUNC char r3 () is matched by ...
64
64
'% ...::%(...)'
65
65
'% %(...)'
66
66
FUNC float r4 () is matched by ...
 
67
'float %()'
67
68
'% ...::%(...)'
68
69
'% %(...)'
69
 
'float %()'
70
70
==============================================================
71
71
const / volatile pointers
72
72
-------------------------
73
73
FUNC char * p1 () is matched by ...
 
74
'% * %()'
74
75
'% ...::%(...)'
75
76
'% %(...)'
76
 
'% * %()'
77
77
FUNC char * const p2 () is matched by ...
78
 
'% ...::%(...)'
79
 
'% %(...)'
80
78
'char * const %()'
81
79
'% * %()'
82
80
'const % %()'
 
81
'% ...::%(...)'
 
82
'% %(...)'
83
83
FUNC char * volatile p3 () is matched by ...
 
84
'% * volatile %()'
 
85
'% * %()'
84
86
'% ...::%(...)'
85
87
'% %(...)'
86
 
'% * volatile %()'
87
 
'% * %()'
88
88
FUNC char * const volatile p4 () is matched by ...
89
 
'% ...::%(...)'
90
 
'% %(...)'
91
89
'% * volatile const %()'
92
90
'% * volatile %()'
93
91
'char * const %()'
94
92
'% * %()'
95
93
'const % %()'
 
94
'% ...::%(...)'
 
95
'% %(...)'
96
96
==============================================================
97
97
check parameter type adjustments
98
98
--------------------------------