style. 格式化

This commit is contained in:
lhhxxxxx
2022-08-02 03:05:40 +08:00
parent 8ef5f83c0c
commit 97aabcbf32

View File

@@ -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;