Remove the useless const on a map key.

Also fixes a compilation issue.
This commit is contained in:
Mark de Wever 2012-08-08 17:49:06 +00:00
parent 907cb77035
commit 61becb9cec

View file

@ -132,7 +132,7 @@ public:
void describe_terrain();
private:
std::map<const std::string, double> terrain_percentage_;
std::map<std::string, double> terrain_percentage_;
std::vector<field_couple> couple_field_list_;