Home | History | Annotate | Download | only in SemaCXX

Lines Matching full:operator

6   operator A();
10 operator const A();
14 B& operator=(B&); // expected-note 4 {{candidate function}}
18 operator B();
22 operator B&();
26 operator const B();
30 operator const B&();
34 int operator=(int); // expected-note{{candidate function}}
35 long operator=(long); // expected-note{{candidate function}}
36 int operator+=(int); // expected-note{{candidate function}}
37 int operator+=(long); // expected-note{{candidate function}}
41 D& operator+=(const D &);
45 operator int();
86 nc = 1.0; // expected-error{{use of overloaded operator '=' is ambiguous}}
89 nc += 1.0; // expected-error{{use of overloaded operator '+=' is ambiguous}}