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
This commit is contained in:
adrian
2012-11-08 13:05:05 +00:00
parent e337fef205
commit 5648093ffe

View File

@ -5,7 +5,7 @@
#ifdef CONFIG_FAST_BREAKPOINTS #ifdef CONFIG_FAST_BREAKPOINTS
#include <iostream> #include <cassert>
#include "../Listener.hpp" #include "../Listener.hpp"
/** /**
@ -20,7 +20,7 @@ public:
{ {
assert(sli != NULL && "FATAL ERROR: Argument (ptr) cannot be NULL!"); assert(sli != NULL && "FATAL ERROR: Argument (ptr) cannot be NULL!");
// Check whether we were called from onTrigger (see SimulatorController.cc@addListener). // 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) if (pFlow == CoroutineManager::SIM_FLOW)
pFlow = sli->getParent(); pFlow = sli->getParent();
m_LstList.add(sli, pFlow); m_LstList.add(sli, pFlow);
@ -37,7 +37,7 @@ public:
{ {
assert(rli != NULL && "FATAL ERROR: Argument (ptr) cannot be NULL!"); assert(rli != NULL && "FATAL ERROR: Argument (ptr) cannot be NULL!");
// Check whether we were called from onTrigger (see above). // 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) if (pFlow == CoroutineManager::SIM_FLOW)
pFlow = rli->getParent(); pFlow = rli->getParent();
m_LstList.add(rli, pFlow); m_LstList.add(rli, pFlow);