Merge pull request #97 from archshift/cleanup

Small, general code cleanup
This commit is contained in:
bunnei 2014-09-13 22:58:58 -04:00
commit 5481115e71
6 changed files with 32 additions and 48 deletions

View file

@ -18,7 +18,7 @@ void LoadSymbolMap(std::string filename) {
std::ifstream infile(filename);
std::string address_str, function_name, line;
u32 size, address;
u32 size;
while (std::getline(infile, line)) {
std::istringstream iss(line);