mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 04:08:55 +00:00
SymbolDB: Use set to map hash with symbols
This commit is contained in:
parent
7e974f1064
commit
8d812db9ad
3 changed files with 7 additions and 5 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue