From daeb4be0d8678e0225727aa73f6f973c596ca5bb Mon Sep 17 00:00:00 2001 From: lhhxxxxx <91231470+lhhxxxxx@users.noreply.github.com> Date: Tue, 2 Aug 2022 03:05:40 +0800 Subject: [PATCH] =?UTF-8?q?style.=20=E6=A0=BC=E5=BC=8F=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/MeoAssistant/BattleProcessTask.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/MeoAssistant/BattleProcessTask.cpp b/src/MeoAssistant/BattleProcessTask.cpp index 66c398705f..a3bbb535ef 100644 --- a/src/MeoAssistant/BattleProcessTask.cpp +++ b/src/MeoAssistant/BattleProcessTask.cpp @@ -181,9 +181,9 @@ bool asst::BattleProcessTask::analyze_opers_preview() // 找出这个干员是哪个组里的,以及他的技能用法等 for (const auto& [group_name, deploy_opers] : m_copilot_data.groups) { auto iter = std::ranges::find_if(deploy_opers, - [&](const BattleDeployOper& deploy) -> bool { - return deploy.name == oper_name; - }); + [&](const BattleDeployOper& deploy) -> bool { + return deploy.name == oper_name; + }); if (iter != deploy_opers.cend()) { m_group_to_oper_mapping.emplace(group_name, *iter); not_found = false;