Minor code cleanup

This commit is contained in:
Maschell
2022-04-22 22:56:14 +02:00
parent 48eb915a70
commit a7494c59cb
5 changed files with 1 additions and 7 deletions

View File

@@ -30,7 +30,7 @@ public:
}
bool operator<(const FunctionSymbolData &rhs) const {
return (uint32_t) address < (uint32_t) rhs.address; //assume that you compare the record based on a
return (uint32_t) address < (uint32_t) rhs.address;
}
virtual ~FunctionSymbolData() = default;