From 7ea3b3666364082295391381080b08710f684cb6 Mon Sep 17 00:00:00 2001 From: Patrick Kappl Date: Thu, 11 Jan 2024 12:57:06 +0100 Subject: [PATCH] Add missing #include to thread_base.h --- sdk_core/src/base/thread_base.h | 1 + 1 file changed, 1 insertion(+) diff --git a/sdk_core/src/base/thread_base.h b/sdk_core/src/base/thread_base.h index 35f7fbd..2ae2ee9 100644 --- a/sdk_core/src/base/thread_base.h +++ b/sdk_core/src/base/thread_base.h @@ -25,6 +25,7 @@ #ifndef LIVOX_THREAD_BASE_H_ #define LIVOX_THREAD_BASE_H_ #include +#include #include #include "noncopyable.h"