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

@@ -1 +1 @@
/」」<EFBDA3><EFBDA3>n怒退<E68092>吭n <EFBFBD>R<EFBFBD><EFBFBD>XqG<EFBFBD><EFBFBD>R<15>'Z<><5A>

View File

@@ -1,7 +1,7 @@
{ {
"FileVersion": 3, "FileVersion": 3,
"Version": 1, "Version": 1,
"VersionName": "2025.1.3", "VersionName": "2025.1.5",
"FriendlyName": "RiderLink", "FriendlyName": "RiderLink",
"Description": "Plugin for establishing IPC connection with JetBrains Rider IDE", "Description": "Plugin for establishing IPC connection with JetBrains Rider IDE",
"Category": "Programming", "Category": "Programming",

View File

@@ -77,7 +77,7 @@ public:
V const* get_old_value() const 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::Update const& e) { return e.old_value; },
[](typename MapEvent::Remove const& e) { e.old_value; }), [](typename MapEvent::Remove const& e) { e.old_value; }),
v); v);

View File

@@ -102,7 +102,7 @@ public:
return start_internal(request, false, responseScheduler ? responseScheduler : get_default_scheduler()); 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") RD_ASSERT_MSG(false, "RdCall.on_wire_received called")
} }

View File

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