mirror of
				https://github.com/OPM/opm-simulators.git
				synced 2025-02-25 18:55:30 -06:00 
			
		
		
		
	replace typedef with using statements
This commit is contained in:
		@@ -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)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user