Changeset - r27822:82a3541ac0c9
[Not reviewed]
master
0 1 0
Joan Josep - 10 months ago 2023-08-25 10:56:11
juanjo.ng.83@gmail.com
Doc: Improve the example given for fall throughs. (#11228)
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
CODINGSTYLE.md
Show inline comments
 
@@ -180,7 +180,7 @@ switch (a) {
 

	
 
	case 1:
 
		DoSomething();
 
		/* FALL THROUGH */
 
		FALLTHROUGH;
 

	
 
	case 2:
 
		DoMore();
 
@@ -191,7 +191,7 @@ switch (a) {
 
		int r = 2;
 

	
 
		DoEvenMore(a);
 
		/* FALL THROUGH */
 
		FALLTHROUGH;
 
	}
 

	
 
	case 4: {
0 comments (0 inline, 0 general)