mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-01-15 11:21:58 -06:00
replace typedef with using statements
This commit is contained in:
parent
6ef5e239b2
commit
2c1a6ae8cb
@ -41,10 +41,8 @@ namespace Opm
|
||||
class WellState
|
||||
{
|
||||
public:
|
||||
typedef std::array< int, 3 > mapentry_t;
|
||||
typedef std::map< std::string, mapentry_t > WellMapType;
|
||||
|
||||
|
||||
using mapentry_t = std::array<int, 3>;
|
||||
using WellMapType = std::map<std::string, mapentry_t>;
|
||||
|
||||
explicit WellState(const PhaseUsage& pu) :
|
||||
phase_usage_(pu)
|
||||
|
Loading…
Reference in New Issue
Block a user