mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 08:09:26 +01:00
GCC does not accept namespace as a prefix when defining functions (in general or because we are already inside the namespace?).
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@296 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
2babda7a80
commit
7151ec6f4f
@ -246,7 +246,7 @@ void FixUpInternalBranches(CodeOp *code, int begin, int end)
|
||||
}
|
||||
}
|
||||
|
||||
void PPCAnalyst::ShuffleUp(CodeOp *code, int first, int last)
|
||||
void ShuffleUp(CodeOp *code, int first, int last)
|
||||
{
|
||||
CodeOp temp = code[first];
|
||||
for (int i = first; i < last; i++)
|
||||
@ -608,7 +608,7 @@ void FindFunctionsAfterBLR(SymbolDB *func_db)
|
||||
}
|
||||
}
|
||||
|
||||
void PPCAnalyst::FindFunctions(u32 startAddr, u32 endAddr, SymbolDB *func_db)
|
||||
void FindFunctions(u32 startAddr, u32 endAddr, SymbolDB *func_db)
|
||||
{
|
||||
//Step 1: Find all functions
|
||||
FindFunctionsFromBranches(startAddr, endAddr, func_db);
|
||||
|
Loading…
x
Reference in New Issue
Block a user