Fixed correspondence of reactor type string names to integer constants

Cherry-picked from trunk (r1869).
This commit is contained in:
Ray Speth 2012-11-05 19:26:07 +00:00
parent 2e233d0542
commit 353fb38b11

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