From 6598520c0a018528d7bbe3dde5209bd023137f7e Mon Sep 17 00:00:00 2001 From: Robin Thunig Date: Tue, 13 Jul 2021 08:09:25 +0200 Subject: [PATCH] fix small bug in assertion caused by incorrect spelling --- src/core/sal/SimulatorController.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/sal/SimulatorController.cc b/src/core/sal/SimulatorController.cc index c40462b9..2ea73bf4 100644 --- a/src/core/sal/SimulatorController.cc +++ b/src/core/sal/SimulatorController.cc @@ -65,7 +65,7 @@ void SimulatorController::startup() if (m_Experiments.size() == 0) { // Experiment was initialized indirecty, therefore there // should be at least one experiment flow. - assert(m_flows.size() > 0 && "No experiment was added (directly or indirectly)"); + assert(m_Flows.size() > 0 && "No experiment was added (directly or indirectly)"); } else { std::string experiment_name;