remove declarations of fcns that we were moved

fixes up a4b194c079
This commit is contained in:
Chris Beck 2014-06-18 14:03:47 -04:00
parent c3ad891fba
commit bc4b4a9569

View file

@ -511,19 +511,6 @@ private:
int moves_;
};
/// Used to find units in vectors by their ID. (Convenience wrapper)
std::vector<UnitPtr >::iterator find_if_matches_id(
std::vector<UnitPtr > &unit_list,
const std::string &unit_id);
/// Used to find units in vectors by their ID. (Convenience wrapper)
std::vector<UnitPtr >::const_iterator find_if_matches_id(
const std::vector<UnitPtr > &unit_list,
const std::string &unit_id);
/// Used to erase units from vectors by their ID. (Convenience wrapper)
std::vector<UnitPtr >::iterator erase_if_matches_id(
std::vector<UnitPtr > &unit_list,
const std::string &unit_id);
/** Returns the number of units of the side @a side_num. */
int side_units(int side_num);