summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/common/symbols.h11
1 files changed, 3 insertions, 8 deletions
diff --git a/src/common/symbols.h b/src/common/symbols.h
index 6b62b011e..e9ddb532d 100644
--- a/src/common/symbols.h
+++ b/src/common/symbols.h
@@ -12,15 +12,10 @@
12 12
13struct TSymbol 13struct TSymbol
14{ 14{
15 TSymbol() : 15 u32 address = 0;
16 address(0),
17 size(0),
18 type(0)
19 {}
20 u32 address;
21 std::string name; 16 std::string name;
22 u32 size; 17 u32 size = 0;
23 u32 type; 18 u32 type = 0;
24}; 19};
25 20
26typedef std::map<u32, TSymbol> TSymbolsMap; 21typedef std::map<u32, TSymbol> TSymbolsMap;