summaryrefslogtreecommitdiff
path: root/src/common/symbols.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2015-09-30 11:54:44 -0400
committerLioncash <mathew1800@gmail.com>2015-09-30 11:54:44 -0400
commit65d7a82db4d6b0236627baef1064a23695b12841 (patch)
tree8742d6971c7eef1cfc5a8bbf54c30102f7577de3 /src/common/symbols.h
parent7e143d4422eebb108b6e1d9a67ed5e1b3b5c23da (diff)
symbols: Get rid of initial underscores in variable names
Diffstat (limited to 'src/common/symbols.h')
-rw-r--r--src/common/symbols.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/common/symbols.h b/src/common/symbols.h
index e9ddb532d..5ed16009c 100644
--- a/src/common/symbols.h
+++ b/src/common/symbols.h
@@ -23,12 +23,12 @@ typedef std::pair<u32, TSymbol> TSymbolsPair;
namespace Symbols
{
- bool HasSymbol(u32 _address);
+ bool HasSymbol(u32 address);
- void Add(u32 _address, const std::string& _name, u32 _size, u32 _type);
- TSymbol GetSymbol(u32 _address);
- const std::string GetName(u32 _address);
- void Remove(u32 _address);
+ void Add(u32 address, const std::string& name, u32 size, u32 type);
+ TSymbol GetSymbol(u32 address);
+ const std::string GetName(u32 address);
+ void Remove(u32 address);
void Clear();
}