diff options
Diffstat (limited to 'Build/source/texk/web2c/xetexdir/XeTeXFontInst.cpp')
-rw-r--r-- | Build/source/texk/web2c/xetexdir/XeTeXFontInst.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Build/source/texk/web2c/xetexdir/XeTeXFontInst.cpp b/Build/source/texk/web2c/xetexdir/XeTeXFontInst.cpp index 2013c442e2b..837640d1d48 100644 --- a/Build/source/texk/web2c/xetexdir/XeTeXFontInst.cpp +++ b/Build/source/texk/web2c/xetexdir/XeTeXFontInst.cpp @@ -43,10 +43,6 @@ authorization from the copyright holders. #include "XeTeXLayoutInterface.h" #include "XeTeXswap.h" -#ifdef XETEX_MAC -#include <Carbon/Carbon.h> -#endif - #include "XeTeX_ext.h" #include "sfnt.h" @@ -118,7 +114,7 @@ void XeTeXFontInst::initialize(int &status) postTable = (const POSTTable *) readFontTable(kPOST); if (postTable != NULL) { - fItalicAngle = Fix2D(SWAP(UInt32(postTable->italicAngle))); + fItalicAngle = Fix2D(SWAP(uint32_t(postTable->italicAngle))); deleteTable(postTable); } |