File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -128,8 +128,7 @@ everywhere. It's fine to probe for additional C99 features and use
128
128
them where available, providing there is also a fallback for compilers
129
129
that don't support the feature. For example, we use C11 thread local
130
130
storage when available, but fall back to POSIX thread specific APIs
131
- otherwise, and we use C<char> for booleans if C<< <stdbool.h> >> isn't
132
- available.
131
+ otherwise.
133
132
134
133
Code can use (and rely on) the following C99 features being present
135
134
@@ -233,6 +232,13 @@ C<//> comments
233
232
All compilers we tested support their use. Not all humans we tested
234
233
support their use.
235
234
235
+ =item *
236
+
237
+ booleans
238
+
239
+ You can use C<bool>, C<true>, and C<false> as provided by C<< <stdbool.h >>
240
+ (or natively in C++).
241
+
236
242
=back
237
243
238
244
Code explicitly should not use any other C99 features. For example
You can’t perform that action at this time.
0 commit comments