diff options
| author | LillyJadeKatrin <lilly.kitty.1988@gmail.com> | 2025-05-17 23:28:22 -0400 |
|---|---|---|
| committer | LillyJadeKatrin <lilly.kitty.1988@gmail.com> | 2025-05-18 05:16:17 -0400 |
| commit | dac023af15cbcf966ae5edfb2ea05cd475b0150d (patch) | |
| tree | 1cf178f52a7db42ce13ad04334ff1feb2f8b843c /Source | |
| parent | b6803d00fecd599e4d7e29ca9757e793f79afc09 (diff) | |
Resolve clang-tidy violation
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Core/Core/AchievementManager.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/Core/Core/AchievementManager.cpp b/Source/Core/Core/AchievementManager.cpp index 40667f6bd8..f7428c3a3c 100644 --- a/Source/Core/Core/AchievementManager.cpp +++ b/Source/Core/Core/AchievementManager.cpp @@ -1269,8 +1269,7 @@ void AchievementManager::Request(const rc_api_request_t* request, std::string url = request->url; std::string post_data = request->post_data; AchievementManager::GetInstance().m_queue.Push( - [url = std::move(url), post_data = std::move(post_data), callback = std::move(callback), - callback_data = std::move(callback_data)] { + [url = std::move(url), post_data = std::move(post_data), callback, callback_data] { Common::HttpRequest http_request; Common::HttpRequest::Response http_response; if (!post_data.empty()) |
