diff --git a/source/simulation2/helpers/Selection.cpp b/source/simulation2/helpers/Selection.cpp index 4cc7a7ebbc..fc83f6fb45 100644 --- a/source/simulation2/helpers/Selection.cpp +++ b/source/simulation2/helpers/Selection.cpp @@ -53,7 +53,7 @@ std::vector EntitySelection::PickEntitiesAtPoint(CSimulation2& simu cmpRangeManager->GetSubdivision()->GetNear(ents, pos, entity_pos_t::FromInt(range)); // Filter for relevent entities and calculate precise distances. - std::vector> hits; // (dist^2, entity) pairs + std::vector > hits; // (dist^2, entity) pairs for (int i = 0; i < ents.size(); ++i) { CmpPtr cmpSelectable(simulation, ents[i]);