From bcbf7ce3b65a68e40d69baa111fe26fe5c464a4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Thu, 22 Apr 2021 16:23:13 +0200 Subject: [PATCH] Add type_traits include for `std::is_trivially_destructible` (cherry picked from commit 3d46f2855860e93f1cd7d8cd73a35fe34bac64dd) --- core/safe_refcount.h | 1 + 1 file changed, 1 insertion(+) diff --git a/core/safe_refcount.h b/core/safe_refcount.h index 7519329f2a5..c34d84f55b3 100644 --- a/core/safe_refcount.h +++ b/core/safe_refcount.h @@ -36,6 +36,7 @@ #if !defined(NO_THREADS) #include +#include // Design goals for these classes: // - No automatic conversions or arithmetic operators,