From 2127e6bee8f6bf8e7ef6a742380ba822bad60956 Mon Sep 17 00:00:00 2001 From: Brian Potchik Date: Fri, 24 Nov 2023 13:23:11 -0500 Subject: Add Symbolic symbols type. --- ui/symbollist.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'ui') 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; } -- cgit v1.3.1