pike.git/
src/
operators.c
Branch:
Tag:
Non-build tags
All tags
No tags
2018-02-12
2018-02-12 22:22:42 by Marcus Comstedt <marcus@mc.pp.se>
3595ea1db874471d0dc9330f052cd1d3a0c06525 (
5
lines) (+
3
/-
2
)
[
Show
|
Annotate
]
Branch:
master
Add more FALLTHRU directives where needed
2638:
switch(args) {
-
case 3: func();
-
case 2: func();
+
case 3: func();
/* FALLTHRU */
+
case 2: func();
/* FALLTHRU */
case 1: return; default: