introduced symbol_t, added SymbolString::dataAt() and ::isMaster(), renamed SymbolString::getDataStr() to getStr(), use size_t/ssize_t where appropriate, simplified by use of new SymbolString methods, corrected broadcast scan conversion, use override declaration
This commit is contained in:
@@ -160,7 +160,7 @@ int main(int argc, char* argv[]) {
|
||||
fstream file(opt.dumpFile, ios::in | ios::binary);
|
||||
if (file.is_open()) {
|
||||
while (true) {
|
||||
unsigned char byte = (unsigned char)file.get();
|
||||
symbol_t byte = (symbol_t)file.get();
|
||||
if (file.eof()) {
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user