Modify rule S3715: Mention empty initializer before C23

This commit is contained in:
Michael Jabbour 2024-08-21 17:15:51 +02:00 committed by GitHub
parent 41f1111fdd
commit b053b7cd6c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -11,6 +11,7 @@ Proprietary compiler extensions can be handy, but they commit you to always usin
* A structure member initializer with a colon
* Decimal floating points numbers ``++_Decimal32++``, ``++_Decimal64++``, and ``++_Decimal128++``
* Structures and union without named data members
* Empty initializers ``= {}`` in pre-C23 code, as the feature was standardized in C23
=== Noncompliant code example