summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2017-05-21 17:24:14 -0400
committerLioncash <mathew1800@gmail.com>2017-05-21 17:39:42 -0400
commitbbe1e643fb9fb83d55345101e793afd75d040b00 (patch)
treecfba349e3f0bc02249ab87f432dac1aa2e9d69ef /Source/Core
parentd0089191e102859dfc55cad219b09e8254280e15 (diff)
SignatureDB: in-class initialize DBFunc members
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Core/PowerPC/SignatureDB/SignatureDB.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/Core/Core/PowerPC/SignatureDB/SignatureDB.h b/Source/Core/Core/PowerPC/SignatureDB/SignatureDB.h
index 5a507e966c..efcd22ea37 100644
--- a/Source/Core/Core/PowerPC/SignatureDB/SignatureDB.h
+++ b/Source/Core/Core/PowerPC/SignatureDB/SignatureDB.h
@@ -63,11 +63,10 @@ class HashSignatureDB : public SignatureDBFormatHandler
public:
struct DBFunc
{
- u32 size;
+ u32 size = 0;
std::string name;
std::string object_name;
std::string object_location;
- DBFunc() : size(0) {}
};
using FuncDB = std::map<u32, DBFunc>;