Part: modernize C++: replace 'typedef' with 'using'

This commit is contained in:
wmayer
2022-08-29 19:31:50 +02:00
parent 7eb30ca5c7
commit c6a208bb18
30 changed files with 58 additions and 58 deletions

View File

@@ -77,7 +77,7 @@
using namespace Part;
typedef unsigned long UNICHAR; // ul is FT2's codepoint type <=> Py_UNICODE2/4
using UNICHAR = unsigned long; // ul is FT2's codepoint type <=> Py_UNICODE2/4
// Private function prototypes
PyObject* getGlyphContours(FT_Face FTFont, UNICHAR currchar, double PenPos, double Scale,int charNum, double tracking);