diff options
Diffstat (limited to 'src/common/symbols.h')
-rw-r--r-- | src/common/symbols.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/common/symbols.h b/src/common/symbols.h index b76749654..b13a8001a 100644 --- a/src/common/symbols.h +++ b/src/common/symbols.h @@ -8,8 +8,6 @@ #include "common/common.h" -class DebugInterface; - struct TSymbol { TSymbol() : @@ -32,7 +30,7 @@ namespace Symbols void Add(u32 _address, const std::string& _name, u32 _size, u32 _type); TSymbol GetSymbol(u32 _address); - const std::string& GetName(u32 _address); + const std::string GetName(u32 _address); void Remove(u32 _address); void Clear(); }; |