Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Side by Side Diff: tools/clang/blink_gc_plugin/tests/non_virtual_trace.txt

Issue 1385193002: Bisect clang Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 246985 Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 In file included from non_virtual_trace.cpp:5:
2 ./non_virtual_trace.h:12:1: warning: [blink-gc] Left-most base class 'A' of deri ved class 'D' must define a virtual trace method.
3 class A : public GarbageCollected<A> {
4 ^
5 non_virtual_trace.cpp:13:1: warning: [blink-gc] Class 'C' overrides non-virtual trace of base class 'A'.
6 void C::trace(Visitor* visitor)
7 ^
8 ./non_virtual_trace.h:14:5: note: [blink-gc] Non-virtual trace method declared h ere:
9 void trace(Visitor*);
10 ^
11 non_virtual_trace.cpp:18:1: warning: [blink-gc] Class 'D' overrides non-virtual trace of base class 'A'.
12 void D::trace(Visitor* visitor)
13 ^
14 ./non_virtual_trace.h:14:5: note: [blink-gc] Non-virtual trace method declared h ere:
15 void trace(Visitor*);
16 ^
17 3 warnings generated.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698