SymbolDB: Change Symbol's 'analyzed' member into a boolean

It's only ever used as one
This commit is contained in:
Lioncash
2016-09-13 21:16:04 -04:00
parent 0ac77b0288
commit 00ddbee786
2 changed files with 4 additions and 4 deletions

View File

@ -39,7 +39,7 @@ struct Symbol
int numCalls = 0;
Type type = Type::Function;
int index = 0; // only used for coloring the disasm view
int analyzed = 0;
bool analyzed = false;
};
enum