From dec9c269a1cbddef08f2024889cc7d2375bc7e75 Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Thu, 27 Sep 2012 16:32:15 +0000 Subject: [PATCH] Fixed correspondence of reactor type string names to integer constants --- src/zeroD/ReactorFactory.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/zeroD/ReactorFactory.cpp b/src/zeroD/ReactorFactory.cpp index 0edbb0a51..53eac7977 100644 --- a/src/zeroD/ReactorFactory.cpp +++ b/src/zeroD/ReactorFactory.cpp @@ -23,8 +23,8 @@ static string _types[] = {"Reservoir", "Reactor", "ConstPressureReactor", }; // these constants are defined in ReactorBase.h -static int _itypes[] = {ReservoirType, ReactorType, FlowReactorType, - ConstPressureReactorType +static int _itypes[] = {ReservoirType, ReactorType, ConstPressureReactorType, + FlowReactorType }; /**