mirror of
https://github.com/isocpp/CppCoreGuidelines.git
synced 2025-12-17 12:44:42 +03:00
code formating fix: +1 new line (#1888)
One more new line is necessary after the text "Return statements in a case label are also OK:" to make the code excerpt after it be formatted as code.
This commit is contained in:
@@ -12912,6 +12912,7 @@ Multiple case labels of a single statement is OK:
|
|||||||
}
|
}
|
||||||
|
|
||||||
Return statements in a case label are also OK:
|
Return statements in a case label are also OK:
|
||||||
|
|
||||||
switch (x) {
|
switch (x) {
|
||||||
case 'a':
|
case 'a':
|
||||||
return 1;
|
return 1;
|
||||||
|
|||||||
Reference in New Issue
Block a user