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:
@ -5,7 +5,7 @@
|
||||
|
||||
#ifdef CONFIG_FAST_BREAKPOINTS
|
||||
|
||||
#include <iostream>
|
||||
#include <cassert>
|
||||
#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);
|
||||
|
||||
Reference in New Issue
Block a user