summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorMaarten ter Huurne <maarten@treewalker.org>2008-08-24 19:48:42 +0000
committerMaarten ter Huurne <maarten@treewalker.org>2008-08-24 19:48:42 +0000
commit7151ec6f4faa08f02eae0791fc022aa2be2ffa64 (patch)
tree9be85f1fba3f901ae4e96cac27ebbe92331df498 /Source/Core
parent2babda7a800a9dafa3ce3db626c475456131f6b5 (diff)
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
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Core/Src/PowerPC/PPCAnalyst.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/Core/Src/PowerPC/PPCAnalyst.cpp b/Source/Core/Core/Src/PowerPC/PPCAnalyst.cpp
index 8c830e8e99..f26769747a 100644
--- a/Source/Core/Core/Src/PowerPC/PPCAnalyst.cpp
+++ b/Source/Core/Core/Src/PowerPC/PPCAnalyst.cpp
@@ -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);
@@ -712,4 +712,4 @@ void AnalyzeBackwards()
*/
-} // namespace \ No newline at end of file
+} // namespace