- add sources.
[platform/framework/web/crosswalk.git] / src / tools / clang / plugins / tests / overridden_methods.txt
1 In file included from overridden_methods.cpp:5:
2 ./overridden_methods.h:48:28: warning: [chromium-style] Overriding method must be marked with OVERRIDE.
3   virtual void SomeMethod();
4                            ^
5                             OVERRIDE
6 ./overridden_methods.h:52:34: warning: [chromium-style] Overriding method must be marked with OVERRIDE.
7   virtual void SomeInlineMethod() {}
8                                  ^
9                                   OVERRIDE
10 ./overridden_methods.h:56:39: warning: [chromium-style] Overriding method must be marked with OVERRIDE.
11   virtual void SomeConstMethod() const {}
12                                       ^
13                                        OVERRIDE
14 ./overridden_methods.h:58:53: warning: [chromium-style] Overriding method must be marked with OVERRIDE.
15   virtual void SomeMethodWithExceptionSpec() throw() {}
16                                                     ^
17                                                      OVERRIDE
18 ./overridden_methods.h:61:67: warning: [chromium-style] Overriding method must be marked with OVERRIDE.
19   virtual void SomeConstMethodWithExceptionSpec() const throw(int) {}
20                                                                   ^
21                                                                    OVERRIDE
22 ./overridden_methods.h:63:39: warning: [chromium-style] Overriding method must be marked with OVERRIDE.
23   virtual void SomeNonPureBaseMethod() {}
24                                       ^
25                                        OVERRIDE
26 ./overridden_methods.h:65:39: warning: [chromium-style] Overriding method must be marked with OVERRIDE.
27   virtual void SomeMethodWithComment();  // This is a comment.
28                                       ^
29                                        OVERRIDE
30 ./overridden_methods.h:67:46: warning: [chromium-style] Overriding method must be marked with OVERRIDE.
31   virtual void SomeMethodWithCommentAndBody() {}  // This is a comment.
32                                              ^
33                                               OVERRIDE
34 overridden_methods.cpp:24:28: warning: [chromium-style] Overriding method must be marked with OVERRIDE.
35   virtual void SomeMethod();
36                            ^
37                             OVERRIDE
38 overridden_methods.cpp:28:34: warning: [chromium-style] Overriding method must be marked with OVERRIDE.
39   virtual void SomeInlineMethod() {}
40                                  ^
41                                   OVERRIDE
42 overridden_methods.cpp:32:39: warning: [chromium-style] Overriding method must be marked with OVERRIDE.
43   virtual void SomeConstMethod() const {}
44                                       ^
45                                        OVERRIDE
46 overridden_methods.cpp:34:53: warning: [chromium-style] Overriding method must be marked with OVERRIDE.
47   virtual void SomeMethodWithExceptionSpec() throw() {}
48                                                     ^
49                                                      OVERRIDE
50 overridden_methods.cpp:37:67: warning: [chromium-style] Overriding method must be marked with OVERRIDE.
51   virtual void SomeConstMethodWithExceptionSpec() const throw(int) {}
52                                                                   ^
53                                                                    OVERRIDE
54 overridden_methods.cpp:39:39: warning: [chromium-style] Overriding method must be marked with OVERRIDE.
55   virtual void SomeNonPureBaseMethod() {}
56                                       ^
57                                        OVERRIDE
58 overridden_methods.cpp:41:39: warning: [chromium-style] Overriding method must be marked with OVERRIDE.
59   virtual void SomeMethodWithComment();  // This is a comment.
60                                       ^
61                                        OVERRIDE
62 overridden_methods.cpp:43:46: warning: [chromium-style] Overriding method must be marked with OVERRIDE.
63   virtual void SomeMethodWithCommentAndBody() {}  // This is a comment.
64                                              ^
65                                               OVERRIDE
66 16 warnings generated.