diff options
Diffstat (limited to 'ui')
| -rw-r--r-- | ui/symbollist.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ui/symbollist.h b/ui/symbollist.h index f0f5ffa8..21faa2ba 100644 --- a/ui/symbollist.h +++ b/ui/symbollist.h @@ -147,8 +147,7 @@ class BINARYNINJAUIAPI SymbolListModel : public QAbstractItemModel, public Binar bool isFunc() const { - return (getType() == FunctionSymbol) || (getType() == ImportedFunctionSymbol) - || (getType() == LibraryFunctionSymbol); + return (getType() == FunctionSymbol) || (getType() == ImportedFunctionSymbol) || (getType() == LibraryFunctionSymbol); } uint64_t getStart() const { return address; } std::string getName() const { return name; } |
