Merge pull request #24 from 6arms1leg/fix-type-qual

Fix "clobbered variable" compiler warning (-Wclobbered) in example code snippet
This commit is contained in:
Mark VanderVoord
2022-02-21 10:00:42 -05:00
committed by GitHub
+1 -1
View File
@@ -84,7 +84,7 @@ transferred to the Catch block. A silly example:
```
void SillyExampleWhichPrintsZeroThroughFive(void) {
CEXCEPTION_T e;
volatile CEXCEPTION_T e;
int i;
while (i = 0; i < 6; i++) {
Try {