diff --git a/src/arch/sparc/system.hh b/src/arch/sparc/system.hh index 5d50ea067..c81b093e8 100644 --- a/src/arch/sparc/system.hh +++ b/src/arch/sparc/system.hh @@ -133,21 +133,21 @@ class SparcSystem : public System /** Add a function-based event to reset binary. */ template - T *SparcSystem::addResetFuncEvent(const char *lbl) + T *addResetFuncEvent(const char *lbl) { return addFuncEvent(resetSymtab, lbl); } /** Add a function-based event to the hypervisor. */ template - T *SparcSystem::addHypervisorFuncEvent(const char *lbl) + T *addHypervisorFuncEvent(const char *lbl) { return addFuncEvent(hypervisorSymtab, lbl); } /** Add a function-based event to the openboot. */ template - T *SparcSystem::addOpenbootFuncEvent(const char *lbl) + T *addOpenbootFuncEvent(const char *lbl) { return addFuncEvent(openbootSymtab, lbl); }