From 5648093ffe01c99ff9d4752f91dba5d180dea942 Mon Sep 17 00:00:00 2001 From: adrian Date: Thu, 8 Nov 2012 13:05:05 +0000 Subject: [PATCH] fast-breakpoints: use explicit namespace qualifier in aspect header. git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@1896 8c4709b5-6ec9-48aa-a5cd-a96041d1645a --- src/core/sal/perf/BreakpointControllerSlice.ah | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/sal/perf/BreakpointControllerSlice.ah b/src/core/sal/perf/BreakpointControllerSlice.ah index c4b8d4cd..4d1ed83a 100644 --- a/src/core/sal/perf/BreakpointControllerSlice.ah +++ b/src/core/sal/perf/BreakpointControllerSlice.ah @@ -5,7 +5,7 @@ #ifdef CONFIG_FAST_BREAKPOINTS -#include +#include #include "../Listener.hpp" /** @@ -20,7 +20,7 @@ public: { assert(sli != NULL && "FATAL ERROR: Argument (ptr) cannot be NULL!"); // Check whether we were called from onTrigger (see SimulatorController.cc@addListener). - ExperimentFlow* pFlow = m_Flows.getCurrent(); + fail::ExperimentFlow* pFlow = m_Flows.getCurrent(); if (pFlow == CoroutineManager::SIM_FLOW) pFlow = sli->getParent(); m_LstList.add(sli, pFlow); @@ -37,7 +37,7 @@ public: { assert(rli != NULL && "FATAL ERROR: Argument (ptr) cannot be NULL!"); // Check whether we were called from onTrigger (see above). - ExperimentFlow* pFlow = m_Flows.getCurrent(); + fail::ExperimentFlow* pFlow = m_Flows.getCurrent(); if (pFlow == CoroutineManager::SIM_FLOW) pFlow = rli->getParent(); m_LstList.add(rli, pFlow);