• Home
  • Raw
  • Download

Lines Matching full:because

10 …virtual void foo() { abort(); } // expected-note 4 {{because type 'Virtual' has a virtual member f…  in foo()
13 class VirtualBase : virtual Okay { // expected-note 4 {{because type 'VirtualBase' has a virtual ba…
17 …Ctor() { abort(); } // expected-note 2{{because type 'Ctor' has a user-provided default constructo… in Ctor()
20 …Ctor2(); // expected-note {{because type 'Ctor2' has a user-provided default constructor}} expecte…
22 class CtorTmpl { // expected-note {{because type 'CtorTmpl' has no default constructor}}
26 class CopyCtor { // expected-note 2{{because no constructor can be used to copy an object of type '…
30 class CopyAssign { // expected-note 2 {{because no assignment operator can be used to copy an objec…
35 …~Dtor() { abort(); } // expected-note 2 {{because type 'Dtor' has a user-provided destructor}} exp… in ~Dtor()
52 …Virtual v; // expected-note {{because the function selected to copy field of type 'Virtual' is not…
55 …VirtualBase vbase; // expected-note {{because the function selected to copy field of type 'Virtual…
58 …Ctor ctor; // expected-note {{because field of type 'Ctor' has a user-provided default constructor…
61 …Ctor2 ctor2; // expected-note {{because field of type 'Ctor2' has a user-provided default construc…
70 Dtor dtor; // expected-note {{because field of type 'Dtor' has a user-provided destructor}}
78 …struct s1 : Virtual { // expected-note {{because the function selected to copy base class of type …
80 …struct s2 : VirtualBase { // expected-note {{because the function selected to copy base class of t…
82 …struct s3 : Ctor { // expected-note {{because base class of type 'Ctor' has a user-provided defaul…
84 …struct s3a : Ctor2 { // expected-note {{because base class of type 'Ctor2' has a user-provided def…
86 …struct s4 : CopyCtor { // expected-note {{because no constructor can be used to copy an object of …
88 …struct s5 : CopyAssign { // expected-note {{because no assignment operator can be used to copy an …
90 …struct s6 : Dtor { // expected-note {{because base class of type 'Dtor' has a user-provided destru…
95 …s8(...) = delete; // expected-note {{because it is a variadic function}} expected-warning {{C++11}}