C++: change note for designated intializer fixes

This commit is contained in:
Nick Rolfe
2018-08-31 13:15:53 +01:00
parent 6c7396424e
commit 35d31aeefe

View File

@@ -33,4 +33,6 @@
## Changes to QL libraries
* *Series of bullet points*
* Fixes for aggregate initializers using designators:
** `ClassAggregateLiteral.getFieldExpr()` previously assumed initializer expressions appeared in the same order as the declaration order of the fields, causing it to associate the expressions with the wrong fields when using designated initializers. This has been fixed.
** `ArrayAggregateLiteral.getElementExpr()` previously assumed initializer expressions appeared in the same order as the corresponding array elements, causing it to associate the expressions with the wrong array elements when using designated initializers. This has been fixed.