Correct some usages of COrder

This commit is contained in:
mdiluzio 2014-12-21 10:47:58 +00:00
parent 4aa51a64b6
commit d4f9470704

View file

@ -16,7 +16,7 @@ struct SOrderUnitPair
{} {}
// Multi parameter constructor // Multi parameter constructor
SOrderUnitPair( CUnit&& u, COrder o ) SOrderUnitPair( CUnit&& u, SOrder o )
: unit ( std::move(u) ) : unit ( std::move(u) )
, order ( o ) , order ( o )
{} {}
@ -30,7 +30,7 @@ struct SOrderUnitPair
} }
CUnit unit; // The unit CUnit unit; // The unit
COrder order; // Order for this unit from this turn SOrder order; // Order for this unit from this turn
}; };
// Typedef for a vector of these unit pairs // Typedef for a vector of these unit pairs