Skip to content

Commit

Permalink
Try to fix Windows build problem vs. libunistring and integer typedefs
Browse files Browse the repository at this point in the history
  • Loading branch information
electroly committed Jan 1, 2024
1 parent ed05dda commit c796cba
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,19 +79,19 @@
#include <turbo/turbo.h>
#include <turbo/scintilla/include/SciLexer.h>

// C standard library
#include <cmath>
#include <cstdint>
#include <cstdlib>
#include <ctime>

// libunistring - must be AFTER cstdint, otherwise it will define its own integer typedefs.
// libunistring
#include <unitypes.h>
#include <unistr.h>
#include <unigbrk.h>
#include <uniwbrk.h>
#include <unicase.h>

// C standard library
#include <cmath>
#include <cstdint>
#include <cstdlib>
#include <ctime>

// C++ standard library
#include <algorithm>
#include <array>
Expand Down

0 comments on commit c796cba

Please sign in to comment.