SymbolDB: Use set to map hash with symbols

This commit is contained in:
Sepalani
2016-10-10 23:35:33 +01:00
parent 7e974f1064
commit 8d812db9ad
3 changed files with 7 additions and 5 deletions

View File

@ -8,6 +8,7 @@
#pragma once
#include <map>
#include <set>
#include <string>
#include <utility>
#include <vector>
@ -57,7 +58,7 @@ class SymbolDB
{
public:
typedef std::map<u32, Symbol> XFuncMap;
typedef std::map<u32, Symbol*> XFuncPtrMap;
typedef std::map<u32, std::set<Symbol*>> XFuncPtrMap;
protected:
XFuncMap functions;