From 7b6bfbad682bf9389c18bf7058fd71c1eef419f0 Mon Sep 17 00:00:00 2001 From: Hayodea Hekol Date: Thu, 30 Oct 2025 21:55:21 -0400 Subject: [PATCH] Fix linker error --- stimBuffApis/livoxGen1/ioUringAssemblyEngine.cpp | 1 - stimBuffApis/livoxGen1/ioUringAssemblyEngine.h | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/stimBuffApis/livoxGen1/ioUringAssemblyEngine.cpp b/stimBuffApis/livoxGen1/ioUringAssemblyEngine.cpp index 407c3ce..c61f5ea 100644 --- a/stimBuffApis/livoxGen1/ioUringAssemblyEngine.cpp +++ b/stimBuffApis/livoxGen1/ioUringAssemblyEngine.cpp @@ -29,7 +29,6 @@ IoUringAssemblyEngine::IoUringAssemblyEngine() desc(nullptr), frameBase(nullptr), frameStrideBytes(0), timeoutMs(15), frameIndex(0) {} -IoUringAssemblyEngine::~IoUringAssemblyEngine() = default; bool IoUringAssemblyEngine::setSocketFromDevice(const std::shared_ptr& device) { if (!device) return false; diff --git a/stimBuffApis/livoxGen1/ioUringAssemblyEngine.h b/stimBuffApis/livoxGen1/ioUringAssemblyEngine.h index 6c16796..538e6d8 100644 --- a/stimBuffApis/livoxGen1/ioUringAssemblyEngine.h +++ b/stimBuffApis/livoxGen1/ioUringAssemblyEngine.h @@ -22,7 +22,7 @@ public: using FrameCompleteCallback = std::function; IoUringAssemblyEngine(); - ~IoUringAssemblyEngine(); + ~IoUringAssemblyEngine() = default; // Configure UDP socket by querying the device's pcloud data socket descriptor bool setSocketFromDevice(const std::shared_ptr& device);