Tweak release notes.

The "known issue" about not issuing required diagnostics is removed because ORCA/C has gotten significantly better about that, particularly if strict type checking is enabled. There are still probably some diagnostics that are missed, but it is no longer a big enough issue to be called out more prominently than other bugs.
This commit is contained in:
Stephen Heumann 2022-07-19 20:38:13 -05:00
parent 6e3fca8b82
commit 1177ddc172
1 changed files with 2 additions and 6 deletions

View File

@ -79,10 +79,6 @@ Updated by Stephen Heumann and Kelvin Sherlock, 2017-2022
2.0.1 1. Bugs squashed. See bug notes, below.
-- Known Issues -------------------------------------------------------------
1. ORCA/C fails to detect various error conditions for which the C standards require a diagnostic message to be issued.
-- Manual Errata ------------------------------------------------------------
p. 40
@ -556,11 +552,11 @@ Compound literals can be used in code similarly to the identifier for a named va
PaintRect(&(Rect){10,20,100,200});
Outside of functions, compound literals can be used in initializers, as in the following declaration, which creates an unnamed array and initializes p to point to the first element of that array:
Compound literals can also be used in initializers, as in the following declaration, which creates an unnamed array and initializes p to point to the first element of it:
int *p = (int[]){1,2,3};
(This declaration could also be used within a function, but in that case the variable p and the unnamed array would have automatic storage duration.)
(This declaration could be used inside or outside of a function, with the compound literal having automatic or static storage duration, respectively.)
Multi-Character Character Constants