mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
SymbolDB: Namespace code under the Common namespace
Moves more common code into the Common namespace where it belongs.
This commit is contained in:
@ -204,14 +204,14 @@ bool ElfReader::LoadSymbols() const
|
||||
if (bRelocate)
|
||||
value += sectionAddrs[sectionIndex];
|
||||
|
||||
auto symtype = Symbol::Type::Data;
|
||||
auto symtype = Common::Symbol::Type::Data;
|
||||
switch (type)
|
||||
{
|
||||
case STT_OBJECT:
|
||||
symtype = Symbol::Type::Data;
|
||||
symtype = Common::Symbol::Type::Data;
|
||||
break;
|
||||
case STT_FUNC:
|
||||
symtype = Symbol::Type::Function;
|
||||
symtype = Common::Symbol::Type::Function;
|
||||
break;
|
||||
default:
|
||||
continue;
|
||||
|
Reference in New Issue
Block a user