OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MY_SWITCH
(Results
1 - 2
of
2
) sorted by null
/external/clang/test/SemaCXX/
switch-implicit-fallthrough-cxx98.cpp
97
#define
MY_SWITCH
(X, Y, Z, U, V) switch (X) { case Y: Z; case U: V; }
103
MY_SWITCH
(n, 13, n *= 2, 14, break) // expected-warning{{unannotated fall-through between switch labels}}
switch-implicit-fallthrough.cpp
148
#define
MY_SWITCH
(X, Y, Z, U, V) switch (X) { case Y: Z; case U: V; }
154
MY_SWITCH
(n, 13, n *= 2, 14, break) // expected-warning{{unannotated fall-through between switch labels}}
Completed in 56 milliseconds