update RiderLink.uplugin

This commit is contained in:
Caleb Buhungiro
2025-08-07 13:56:16 +08:00
parent 82fbcc72c4
commit b34094144b
5 changed files with 5 additions and 5 deletions

View File

@@ -77,7 +77,7 @@ public:
V const* get_old_value() const
{
return visit(util::make_visitor([](typename MapEvent::Add const& e) { return static_cast<V const*>(nullptr); },
return visit(util::make_visitor([](typename MapEvent::Add const&) { return static_cast<V const*>(nullptr); },
[](typename MapEvent::Update const& e) { return e.old_value; },
[](typename MapEvent::Remove const& e) { e.old_value; }),
v);

View File

@@ -102,7 +102,7 @@ public:
return start_internal(request, false, responseScheduler ? responseScheduler : get_default_scheduler());
}
void on_wire_received(Buffer buffer) const override
void on_wire_received(Buffer) const override
{
RD_ASSERT_MSG(false, "RdCall.on_wire_received called")
}

View File

@@ -30,7 +30,7 @@ public:
return !(rhs == lhs);
}
friend std::string to_string(RdSymmetricCall const& value)
friend std::string to_string(RdSymmetricCall const&)
{
return "RdSymmetricCall";
}