From 83c5d40cfb3ed2c090f11dc3f2e571e5366cf2a6 Mon Sep 17 00:00:00 2001 From: sanderd17 Date: Tue, 7 Jan 2014 14:37:02 +0000 Subject: [PATCH] fix compiling problem caused by 8226d75715 This was SVN commit r14535. --- source/simulation2/helpers/Selection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]);