From 365de5d1fa15d205c721ed79551c2c25ede940e2 Mon Sep 17 00:00:00 2001 From: Mathieu Lacage Date: Sun, 1 Apr 2012 09:47:33 -0400 Subject: [PATCH] bools are bools --- src/core/model/realtime-simulator-impl.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/model/realtime-simulator-impl.cc b/src/core/model/realtime-simulator-impl.cc index 24c98db57..bef8c720c 100644 --- a/src/core/model/realtime-simulator-impl.cc +++ b/src/core/model/realtime-simulator-impl.cc @@ -95,7 +95,7 @@ void RealtimeSimulatorImpl::DoDispose (void) { NS_LOG_FUNCTION_NOARGS (); - while (m_events->IsEmpty () == false) + while (!m_events->IsEmpty ()) { Scheduler::Event next = m_events->RemoveNext (); next.impl->Unref ();