remove noop explicit template instantation after specialization

This commit is contained in:
Arne Morten Kvarving
2019-10-14 08:54:05 +02:00
parent d98518c023
commit 4e720c5d74

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;
}