From 14e99382f1e50af25dbd6aafd7d1b4930d48bfd7 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 24 Aug 2020 15:15:33 +0200 Subject: [PATCH] Update CODING-GUIDELINES --- CODING-GUIDELINES | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CODING-GUIDELINES b/CODING-GUIDELINES index 5bbb3d21ce..3dcdc18652 100644 --- a/CODING-GUIDELINES +++ b/CODING-GUIDELINES @@ -3,9 +3,9 @@ Struct ordering For POD-types, try to order structs as follows (first to last): -* long double (16 bytes [64bit x86], 12 bytes [32bit x86], 8 bytes) +* long double (8 bytes, 16 bytes [64bit x86], 12 bytes [32bit x86]) * double (8 bytes) -* int64_t (8 bytes, 8 bytes [32bit ARM], 4 bytes [32bit x86]) +* int64_t (8 bytes, 8 bytes [32bit ARM], 4 bytes [32bit x86]) * uint64_t (4 bytes [32bit], 8 bytes [32bit ARM], 8 bytes [64bit]) * pointer (4 bytes [32bit], 8 bytes [64bit]) * intptr_t (4 bytes [32bit], 8 bytes [64bit])