Fix linker error

This commit is contained in:
2025-10-30 21:55:21 -04:00
parent 393326052c
commit 7b6bfbad68
2 changed files with 1 additions and 2 deletions
@@ -29,7 +29,6 @@ IoUringAssemblyEngine::IoUringAssemblyEngine()
desc(nullptr), frameBase(nullptr), frameStrideBytes(0), desc(nullptr), frameBase(nullptr), frameStrideBytes(0),
timeoutMs(15), frameIndex(0) timeoutMs(15), frameIndex(0)
{} {}
IoUringAssemblyEngine::~IoUringAssemblyEngine() = default;
bool IoUringAssemblyEngine::setSocketFromDevice(const std::shared_ptr<livoxProto1::Device>& device) { bool IoUringAssemblyEngine::setSocketFromDevice(const std::shared_ptr<livoxProto1::Device>& device) {
if (!device) return false; if (!device) return false;
@@ -22,7 +22,7 @@ public:
using FrameCompleteCallback = std::function<void(size_t /*frameIndex*/)>; using FrameCompleteCallback = std::function<void(size_t /*frameIndex*/)>;
IoUringAssemblyEngine(); IoUringAssemblyEngine();
~IoUringAssemblyEngine(); ~IoUringAssemblyEngine() = default;
// Configure UDP socket by querying the device's pcloud data socket descriptor // Configure UDP socket by querying the device's pcloud data socket descriptor
bool setSocketFromDevice(const std::shared_ptr<livoxProto1::Device>& device); bool setSocketFromDevice(const std::shared_ptr<livoxProto1::Device>& device);