Remove unused DeckItem constructor
This commit is contained in:
@@ -35,8 +35,6 @@ namespace Opm {
|
||||
class DeckItem {
|
||||
public:
|
||||
DeckItem() = default;
|
||||
explicit DeckItem( const std::string& );
|
||||
|
||||
DeckItem( const std::string&, int, size_t size_hint = 8 );
|
||||
DeckItem( const std::string&, double, size_t size_hint = 8 );
|
||||
DeckItem( const std::string&, std::string, size_t size_hint = 8 );
|
||||
|
||||
@@ -71,8 +71,6 @@ const std::vector< UDAValue >& DeckItem::value_ref< UDAValue >() const {
|
||||
}
|
||||
|
||||
|
||||
DeckItem::DeckItem( const std::string& nm ) : item_name( nm ) {}
|
||||
|
||||
DeckItem::DeckItem( const std::string& nm, int, size_t hint ) :
|
||||
type( get_type< int >() ),
|
||||
item_name( nm )
|
||||
|
||||
Reference in New Issue
Block a user