Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pod/perlhacktips.pod
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ support their use.

booleans

You can use C<bool>, C<true>, and C<false> as provided by C<< <stdbool.h >>
You can use C<bool>, C<true>, and C<false> as provided by C<< <stdbool.h> >>
(or natively in C++).

=back
Expand Down Expand Up @@ -2121,7 +2121,7 @@ C99, and so some workarounds were created. The C<TRUE> and C<FALSE>
macros are still available as alternatives for C<true> and C<false>.
And the C<cBOOL> macro was created to correctly cast to a true/false
value in all circumstances, but should no longer be necessary. Using
S<C<(bool)> I<expr>>> should now always work.
S<C<(bool)> I<expr>> should now always work.

There are no plans to remove any of C<TRUE>, C<FALSE>, nor C<cBOOL>.

Expand Down
Loading