mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2025-03-05 14:29:47 +00:00
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:
parent
6e3fca8b82
commit
1177ddc172
8
cc.notes
8
cc.notes
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user