allow constructing FlatTable from vector

This commit is contained in:
Arne Morten Kvarving
2019-12-02 15:39:25 +01:00
parent 59235b5a11
commit 98a332fc5f

View File

@@ -9,6 +9,9 @@ template< typename T >
struct FlatTable : public std::vector< T > {
FlatTable() = default;
explicit FlatTable( const DeckKeyword& );
explicit FlatTable(const std::vector<T>& data) :
std::vector<T>(data)
{}
};
struct DENSITYRecord {