From b34094144beb459743583772139734a1c5a8fd78 Mon Sep 17 00:00:00 2001 From: Caleb Buhungiro Date: Thu, 7 Aug 2025 13:56:16 +0800 Subject: [PATCH] update RiderLink.uplugin --- Plugins/Developer/RiderLink/Resources/checksum | 2 +- Plugins/Developer/RiderLink/RiderLink.uplugin | 2 +- .../RD/src/rd_core_cpp/src/main/reactive/base/IViewableMap.h | 2 +- .../Source/RD/src/rd_framework_cpp/src/main/task/RdCall.h | 2 +- .../RD/src/rd_framework_cpp/src/main/task/RdSymmetricCall.h | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Plugins/Developer/RiderLink/Resources/checksum b/Plugins/Developer/RiderLink/Resources/checksum index 671758e..42067c8 100644 --- a/Plugins/Developer/RiderLink/Resources/checksum +++ b/Plugins/Developer/RiderLink/Resources/checksum @@ -1 +1 @@ -/££ù„ n“{‘ÞïF™àn \ No newline at end of file +þRÃôXqG’¨R„'Z®Ú \ No newline at end of file diff --git a/Plugins/Developer/RiderLink/RiderLink.uplugin b/Plugins/Developer/RiderLink/RiderLink.uplugin index b0b7a12..4d69e25 100644 --- a/Plugins/Developer/RiderLink/RiderLink.uplugin +++ b/Plugins/Developer/RiderLink/RiderLink.uplugin @@ -1,7 +1,7 @@ { "FileVersion": 3, "Version": 1, - "VersionName": "2025.1.3", + "VersionName": "2025.1.5", "FriendlyName": "RiderLink", "Description": "Plugin for establishing IPC connection with JetBrains Rider IDE", "Category": "Programming", diff --git a/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/reactive/base/IViewableMap.h b/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/reactive/base/IViewableMap.h index 6b13ef2..d749c65 100644 --- a/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/reactive/base/IViewableMap.h +++ b/Plugins/Developer/RiderLink/Source/RD/src/rd_core_cpp/src/main/reactive/base/IViewableMap.h @@ -77,7 +77,7 @@ public: V const* get_old_value() const { - return visit(util::make_visitor([](typename MapEvent::Add const& e) { return static_cast(nullptr); }, + return visit(util::make_visitor([](typename MapEvent::Add const&) { return static_cast(nullptr); }, [](typename MapEvent::Update const& e) { return e.old_value; }, [](typename MapEvent::Remove const& e) { e.old_value; }), v); diff --git a/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/task/RdCall.h b/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/task/RdCall.h index e0a549c..bf72faa 100644 --- a/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/task/RdCall.h +++ b/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/task/RdCall.h @@ -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") } diff --git a/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/task/RdSymmetricCall.h b/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/task/RdSymmetricCall.h index c668d39..535c579 100644 --- a/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/task/RdSymmetricCall.h +++ b/Plugins/Developer/RiderLink/Source/RD/src/rd_framework_cpp/src/main/task/RdSymmetricCall.h @@ -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"; }