MappingCommon: Make use of std::erase_if
This commit is contained in:
parent
888a8692b4
commit
196f8e5123
|
@ -144,8 +144,7 @@ void RemoveSpuriousTriggerCombinations(
|
|||
});
|
||||
};
|
||||
|
||||
detections->erase(std::remove_if(detections->begin(), detections->end(), is_spurious),
|
||||
detections->end());
|
||||
std::erase_if(*detections, is_spurious);
|
||||
}
|
||||
|
||||
} // namespace ciface::MappingCommon
|
||||
|
|
Loading…
Reference in New Issue