replace typedef with using statements

This commit is contained in:
Arne Morten Kvarving 2021-05-12 23:22:45 +02:00
parent 6ef5e239b2
commit 2c1a6ae8cb

View File

@ -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)