From 30c05e8b55c36200735446f237f1d7003cb70450 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Mon, 1 Nov 2021 23:57:00 -0600 Subject: [PATCH] [algs] include --- src/hb-algs.hh | 1 + src/hb-mutex.hh | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hb-algs.hh b/src/hb-algs.hh index 3ebbc3345..7b3a003e8 100644 --- a/src/hb-algs.hh +++ b/src/hb-algs.hh @@ -36,6 +36,7 @@ #include #include +#include /* * Flags diff --git a/src/hb-mutex.hh b/src/hb-mutex.hh index 29c3f8b82..4e135027f 100644 --- a/src/hb-mutex.hh +++ b/src/hb-mutex.hh @@ -73,7 +73,6 @@ typedef CRITICAL_SECTION hb_mutex_impl_t; #elif !defined(HB_NO_MT) #include -#include typedef std::mutex hb_mutex_impl_t; #define hb_mutex_impl_init(M) HB_STMT_START { new (M) hb_mutex_impl_t; } HB_STMT_END #define hb_mutex_impl_lock(M) (M)->lock ()