index
:
firefox
debian
progress-linux
upstream
debian 12 backports: mozilla
Progress Linux
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
tools
/
clang-tidy
/
test
/
bugprone-switch-missing-default-case.cpp
blob: fac442d90dd1b75cf167ae63dbf6812865feb61c (
plain
)
1
2
3
4
5
6
7
void
func
()
{
int
radius
;
switch
(
radius
)
{
case
0
:
break
;
}
}