From 85d629a5989e6a3f3e51ff54eb3c9f0e8620b564 Mon Sep 17 00:00:00 2001 From: Lucas Date: Fri, 24 Mar 2023 12:43:14 +0800 Subject: [PATCH] =?UTF-8?q?fix:1.0.22,=E4=BF=AE=E5=A4=8D=E7=BC=96=E8=AF=91?= =?UTF-8?q?=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- examples/eventx/thread_pool/Makefile | 1 + modules/log/async_channel_test.cpp | 1 + modules/main/terminate.cpp | 1 + version.mk | 2 +- 4 files changed, 4 insertions(+), 1 deletion(-) diff --git a/examples/eventx/thread_pool/Makefile b/examples/eventx/thread_pool/Makefile index 7b9f036..13119db 100644 --- a/examples/eventx/thread_pool/Makefile +++ b/examples/eventx/thread_pool/Makefile @@ -6,6 +6,7 @@ CXXFLAGS := -DLOG_MODULE_ID='"$(EXE_NAME)"' $(CXXFLAGS) LDFLAGS += \ -ltbox_eventx \ -ltbox_event \ + -ltbox_util \ -ltbox_base \ -lpthread \ diff --git a/modules/log/async_channel_test.cpp b/modules/log/async_channel_test.cpp index 08ab487..18e2118 100644 --- a/modules/log/async_channel_test.cpp +++ b/modules/log/async_channel_test.cpp @@ -2,6 +2,7 @@ #include "async_channel.h" #include #include +#include using namespace std; using namespace tbox::log; diff --git a/modules/main/terminate.cpp b/modules/main/terminate.cpp index bc5e01f..1300a9c 100644 --- a/modules/main/terminate.cpp +++ b/modules/main/terminate.cpp @@ -2,6 +2,7 @@ #include #include +#include #include #include diff --git a/version.mk b/version.mk index 8d1d232..b15a915 100644 --- a/version.mk +++ b/version.mk @@ -1,4 +1,4 @@ # TBOX版本号 TBOX_VERSION_MAJOR := 1 TBOX_VERSION_MINOR := 0 -TBOX_VERSION_REVISION := 21 +TBOX_VERSION_REVISION := 22 -- Gitee