Remove obsolete unused attribute
This commit is contained in:
parent
f330fffa09
commit
80eccfbdb2
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ void Map::finishEntityTransition(Entity *entity) {
|
||||||
moveEntityTo(entity, state.position + state.direction);
|
moveEntityTo(entity, state.position + state.direction);
|
||||||
}
|
}
|
||||||
|
|
||||||
std::unique_ptr<Map> Map::load(__attribute__((unused)) const std::string &name) {
|
std::unique_ptr<Map> Map::load(const std::string &name) {
|
||||||
std::string filename = "../resources/map/" + name + ".map";
|
std::string filename = "../resources/map/" + name + ".map";
|
||||||
|
|
||||||
std::ifstream file;
|
std::ifstream file;
|
||||||
|
|
Reference in a new issue