Skip to content
Snippets Groups Projects
Commit c391468f authored by Per Hedbor's avatar Per Hedbor
Browse files

Add a note about multi-char character constants

parent 1cefd257
No related branches found
No related tags found
No related merge requests found
......@@ -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
-------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment