Fixed correspondence of reactor type string names to integer constants

This commit is contained in:
Ray Speth 2012-09-27 16:32:15 +00:00
parent 051a08933f
commit dec9c269a1

View file

@ -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
};
/**