clang-tidy modernize-use-auto

This commit is contained in:
Michael Cook (mackal)
2016-05-25 16:10:28 -04:00
parent cdbeb24a05
commit 60da544d3a
87 changed files with 1465 additions and 1340 deletions
+1 -1
View File
@@ -233,7 +233,7 @@ Map *Map::LoadMapFile(std::string file) {
filename += file;
filename += ".map";
Map *m = new Map();
auto m = new Map();
if (m->Load(filename)) {
return m;
}