[NaCl SDK] nacl_io: Fix bad test added in def60c00.
[chromium-blink-merge.git] / tools / clang / plugins / tests / overridden_methods.txt
blob69ff2b12a6466913af5c4e3921c86aef4e3963eb
1 In file included from overridden_methods.cpp:5:
2 ./overridden_methods.h:25:28: warning: [chromium-style] Overriding method must be marked with 'override' or 'final'.
3   virtual void SomeMethod() = 0;
4                            ^
5                             override
6 ./overridden_methods.h:46:26: warning: [chromium-style] Overriding method must be marked with 'override' or 'final'.
7   virtual ~DerivedClass() {}
8                          ^
9                           override
10 ./overridden_methods.h:48:28: warning: [chromium-style] Overriding method must be marked with 'override' or 'final'.
11   virtual void SomeMethod();
12                            ^
13                             override
14 ./overridden_methods.h:52:34: warning: [chromium-style] Overriding method must be marked with 'override' or 'final'.
15   virtual void SomeInlineMethod() {}
16                                  ^
17                                   override
18 ./overridden_methods.h:56:39: warning: [chromium-style] Overriding method must be marked with 'override' or 'final'.
19   virtual void SomeConstMethod() const {}
20                                       ^
21                                        override
22 ./overridden_methods.h:58:55: warning: [chromium-style] Overriding method must be marked with 'override' or 'final'.
23   virtual void SomeMethodWithExceptionSpec() throw() {}
24                                                       ^
25                                                        override
26 ./overridden_methods.h:61:69: warning: [chromium-style] Overriding method must be marked with 'override' or 'final'.
27   virtual void SomeConstMethodWithExceptionSpec() const throw(int) {}
28                                                                     ^
29                                                                      override
30 ./overridden_methods.h:63:39: warning: [chromium-style] Overriding method must be marked with 'override' or 'final'.
31   virtual void SomeNonPureBaseMethod() {}
32                                       ^
33                                        override
34 ./overridden_methods.h:65:39: warning: [chromium-style] Overriding method must be marked with 'override' or 'final'.
35   virtual void SomeMethodWithComment();  // This is a comment.
36                                       ^
37                                        override
38 ./overridden_methods.h:67:46: warning: [chromium-style] Overriding method must be marked with 'override' or 'final'.
39   virtual void SomeMethodWithCommentAndBody() {}  // This is a comment.
40                                              ^
41                                               override
42 overridden_methods.cpp:15:28: warning: [chromium-style] Overriding method must be marked with 'override' or 'final'.
43   virtual void SomeMethod() = 0;
44                            ^
45                             override
46 overridden_methods.cpp:22:40: warning: [chromium-style] Overriding method must be marked with 'override' or 'final'.
47   virtual ~ImplementationDerivedClass() {}
48                                        ^
49                                         override
50 overridden_methods.cpp:24:28: warning: [chromium-style] Overriding method must be marked with 'override' or 'final'.
51   virtual void SomeMethod();
52                            ^
53                             override
54 overridden_methods.cpp:28:34: warning: [chromium-style] Overriding method must be marked with 'override' or 'final'.
55   virtual void SomeInlineMethod() {}
56                                  ^
57                                   override
58 overridden_methods.cpp:32:39: warning: [chromium-style] Overriding method must be marked with 'override' or 'final'.
59   virtual void SomeConstMethod() const {}
60                                       ^
61                                        override
62 overridden_methods.cpp:34:55: warning: [chromium-style] Overriding method must be marked with 'override' or 'final'.
63   virtual void SomeMethodWithExceptionSpec() throw() {}
64                                                       ^
65                                                        override
66 overridden_methods.cpp:37:69: warning: [chromium-style] Overriding method must be marked with 'override' or 'final'.
67   virtual void SomeConstMethodWithExceptionSpec() const throw(int) {}
68                                                                     ^
69                                                                      override
70 overridden_methods.cpp:39:39: warning: [chromium-style] Overriding method must be marked with 'override' or 'final'.
71   virtual void SomeNonPureBaseMethod() {}
72                                       ^
73                                        override
74 overridden_methods.cpp:41:39: warning: [chromium-style] Overriding method must be marked with 'override' or 'final'.
75   virtual void SomeMethodWithComment();  // This is a comment.
76                                       ^
77                                        override
78 overridden_methods.cpp:43:46: warning: [chromium-style] Overriding method must be marked with 'override' or 'final'.
79   virtual void SomeMethodWithCommentAndBody() {}  // This is a comment.
80                                              ^
81                                               override
82 20 warnings generated.