From cc35ceff23accb44e25dfc47dae920f578836804 Mon Sep 17 00:00:00 2001 From: saturneric Date: Tue, 17 Oct 2023 05:08:57 +0800 Subject: fix: solve compile and link issues --- src/core/thread/DataObject.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/core/thread/DataObject.cpp') diff --git a/src/core/thread/DataObject.cpp b/src/core/thread/DataObject.cpp index b21db7cb..55a5f452 100644 --- a/src/core/thread/DataObject.cpp +++ b/src/core/thread/DataObject.cpp @@ -73,6 +73,8 @@ std::any DataObject::GetParameter(size_t index) const { return p_->GetParameter(index); } +void DataObject::AppendObject(std::any obj) { return p_->AppendObject(obj); } + size_t DataObject::GetObjectSize() const { return p_->GetObjectSize(); } void DataObject::Swap(DataObject& other) noexcept { std::swap(p_, other.p_); } -- cgit v1.2.3