From c391468fc5057de204087c5a0c686655bb0896bd Mon Sep 17 00:00:00 2001 From: Per Hedbor <ph@opera.com> Date: Tue, 6 May 2014 12:33:36 +0200 Subject: [PATCH] Add a note about multi-char character constants --- CHANGES | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGES b/CHANGES index bf4dc8edc4..19008abb2c 100644 --- a/CHANGES +++ b/CHANGES @@ -139,6 +139,13 @@ o The && operator changed, when doing A && B, and A is false, keep A o Fixed symbol resolution with deep inherits and mixins. +o Added multi-character character constants. + + 'ILBM' is equivalent to (('I'<<24)|('L'<<16)|('B'<<8)|'M'). + + Unlike how it works in some C compilers the native byte order is + never relevant. + New preprocessor features ------------------------- -- GitLab