Typos + Coding-Style fixed, TODO revisited.

git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@1422 8c4709b5-6ec9-48aa-a5cd-a96041d1645a
This commit is contained in:
adrian
2012-07-04 11:25:26 +00:00
parent 7adb59e68e
commit 74c4f1cfd1
3 changed files with 13 additions and 4 deletions

View File

@ -158,7 +158,7 @@ bool SimulatorController::removeSuppressedInterrupt(unsigned interruptNum)
void SimulatorController::onTrapEvent(unsigned trapNum)
{
EventManager::iterator it = m_EvList.begin();
while(it != m_EvList.end()) { // check for active events
while (it != m_EvList.end()) { // check for active events
BaseEvent* pev = *it;
TrapEvent* pte = dynamic_cast<TrapEvent*>(pev);
if (!pte || !pte->isMatching(trapNum)) {