Skip to content

Commit

Permalink
Fixed correspondence of reactor type string names to integer constants
Browse files Browse the repository at this point in the history
  • Loading branch information
speth committed Sep 27, 2012
1 parent 051a089 commit dec9c26
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/zeroD/ReactorFactory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
};

/**
Expand Down

0 comments on commit dec9c26

Please sign in to comment.