From 17b5a490c51c61e176bb60855e06356c4d95efd2 Mon Sep 17 00:00:00 2001 From: Melody Horn Date: Mon, 2 Nov 2020 23:27:23 -0700 Subject: update C comparison --- vs-c.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vs-c.rst b/vs-c.rst index 73d0653..283e461 100644 --- a/vs-c.rst +++ b/vs-c.rst @@ -15,13 +15,13 @@ Footguns Some constructs in C are almost always the wrong thing. * ``goto`` -* Hexadecimal float literals * Wide characters * Digraphs * Prefix ``++`` and ``--`` * Chaining mixed left and right shifts (e.g. ``x << 3 >> 2``) * Chaining relational/equality operators (e.g. ``3 < x == 2``) * Mixed chains of bitwise or logical operators (e.g. ``2 & x && 4 ^ y``) +* Subtly variable-size integer types (``int`` instead of ``int32_t``, etc) * The comma operator ``,`` Some constructs in C exhibit implicit behavior that should instead be made explicit. -- cgit v1.2.3