update RiderLink.uplugin
This commit is contained in:
@@ -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);
|
||||
|
||||
@@ -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")
|
||||
}
|
||||
|
||||
@@ -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";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user