From 82ba818ff456bcd6d56a06226e3f27e98fbb55c3 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Thu, 14 Aug 2025 22:58:58 -0500 Subject: removing all downloaded devdocs files --- devdocs/gcc~13/case-ranges.html | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 devdocs/gcc~13/case-ranges.html (limited to 'devdocs/gcc~13/case-ranges.html') diff --git a/devdocs/gcc~13/case-ranges.html b/devdocs/gcc~13/case-ranges.html deleted file mode 100644 index 9473195d..00000000 --- a/devdocs/gcc~13/case-ranges.html +++ /dev/null @@ -1,10 +0,0 @@ -

6.30 Case Ranges ΒΆ

You can specify a range of consecutive values in a single case label, like this:

case low ... high:
-

This has the same effect as the proper number of individual case labels, one for each integer value from low to high, inclusive.

This feature is especially useful for ranges of ASCII character codes:

case 'A' ... 'Z':
-

Be careful: Write spaces around the ..., for otherwise it may be parsed wrong when you use it with integer values. For example, write this:

case 1 ... 5:
-

rather than this:

case 1...5:
-
-

- © Free Software Foundation
Licensed under the GNU Free Documentation License, Version 1.3.
- https://gcc.gnu.org/onlinedocs/gcc-13.1.0/gcc/Case-Ranges.html -

-
-- cgit v1.2.3