diff --git a/src/apps/debugger/debug_info/DebuggerDebugInfo.cpp b/src/apps/debugger/debug_info/DebuggerDebugInfo.cpp index 96d6e39cf5..dd4a7b239d 100644 --- a/src/apps/debugger/debug_info/DebuggerDebugInfo.cpp +++ b/src/apps/debugger/debug_info/DebuggerDebugInfo.cpp @@ -17,25 +17,6 @@ #include "SymbolInfo.h" -struct DebuggerDebugInfo::FindByAddressPredicate : UnaryPredicate { - FindByAddressPredicate(target_addr_t address) - : - fAddress(address) - { - } - - virtual int operator()(const SymbolInfo* info) const - { - if (fAddress < info->Address()) - return -1; - return fAddress < info->Address() + info->Size() ? 0 : 1; - } - -private: - target_addr_t fAddress; -}; - - DebuggerDebugInfo::DebuggerDebugInfo(const ImageInfo& imageInfo, DebuggerInterface* debuggerInterface, Architecture* architecture) :