[MD settings] moving attached() code
[chromium-blink-merge.git] / tools / clang / plugins / tests / overridden_methods.txt
blobbc2d1aca86a9dde33bf5ec1d8762d20efde1472e
1 In file included from overridden_methods.cpp:5:
2 ./overridden_methods.h:25:29: 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:27: 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:35: warning: [chromium-style] Overriding method must be marked with 'override' or 'final'.
15   virtual void SomeInlineMethod() {}
16                                   ^
17                                    override
18 ./overridden_methods.h:56:40: 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:54: 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:68: 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:40: 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:47: 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:29: 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:41: 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:35: warning: [chromium-style] Overriding method must be marked with 'override' or 'final'.
55   virtual void SomeInlineMethod() {}
56                                   ^
57                                    override
58 overridden_methods.cpp:32:40: 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:54: 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:68: 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:40: 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:47: 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.