From c796cbae805dcd2fd034e797dc0b7efc1788bf65 Mon Sep 17 00:00:00 2001 From: Brian Luft Date: Mon, 1 Jan 2024 09:44:44 +0000 Subject: [PATCH] Try to fix Windows build problem vs. libunistring and integer typedefs --- src/common.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/common.h b/src/common.h index 20e75794..26fac309 100644 --- a/src/common.h +++ b/src/common.h @@ -79,19 +79,19 @@ #include #include -// C standard library -#include -#include -#include -#include - -// libunistring - must be AFTER cstdint, otherwise it will define its own integer typedefs. +// libunistring #include #include #include #include #include +// C standard library +#include +#include +#include +#include + // C++ standard library #include #include