remove noop explicit template instantation after specialization

This commit is contained in:
Arne Morten Kvarving
2019-10-14 08:54:05 +02:00
committed by Markus Blatt
parent 646d263883
commit aaaa22e279

View File

@@ -511,7 +511,6 @@ template std::string DeckItem::get< std::string >( size_t ) const;
template UDAValue DeckItem::get< UDAValue >( size_t ) const;
template const std::vector< int >& DeckItem::getData< int >() const;
template const std::vector< double >& DeckItem::getData< double >() const;
template const std::vector< UDAValue >& DeckItem::getData< UDAValue >() const;
template const std::vector< std::string >& DeckItem::getData< std::string >() const;
}