GConSump/Sale: using default constructor.
This commit is contained in:
@@ -39,7 +39,7 @@ namespace Opm {
|
||||
MaxProcedure max_proc;
|
||||
};
|
||||
|
||||
GConSale();
|
||||
GConSale() = default;
|
||||
|
||||
bool has(const std::string& name) const;
|
||||
const GCONSALEGroup& get(const std::string& name) const;
|
||||
|
||||
@@ -29,7 +29,7 @@ namespace Opm {
|
||||
|
||||
class GConSump {
|
||||
public:
|
||||
GConSump();
|
||||
GConSump() = default;
|
||||
|
||||
struct GCONSUMPGroup {
|
||||
UDAValue consumption_rate;
|
||||
|
||||
@@ -23,9 +23,6 @@
|
||||
|
||||
namespace Opm {
|
||||
|
||||
GConSale::GConSale() {
|
||||
}
|
||||
|
||||
bool GConSale::has(const std::string& name) const {
|
||||
return (groups.find(name) != groups.end());
|
||||
}
|
||||
|
||||
@@ -21,10 +21,6 @@
|
||||
|
||||
namespace Opm {
|
||||
|
||||
GConSump::GConSump() {
|
||||
}
|
||||
|
||||
|
||||
bool GConSump::has(const std::string& name) const {
|
||||
return (groups.find(name) != groups.end());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user