Remove the useless const on a map key.
Also fixes a compilation issue.
This commit is contained in:
parent
907cb77035
commit
61becb9cec
1 changed files with 1 additions and 1 deletions
|
@ -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_;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue