1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-04 19:25:56 +01:00

Oops. Forgot to delete SortNode (prevented linking)

This commit is contained in:
Michael Marshall 2019-02-25 11:35:33 +00:00
parent 3f2fe5c7e7
commit 31e40c26fa

View File

@ -106,17 +106,6 @@ namespace Grid
template <>
void Hdf5Writer::writeDefault(const std::string &s, const std::string &x);
class SortNode {
public:
int index;
hsize_t dimsize;
//bool operator<(const SortNode &r) { return dimsize < r.dimsize || (dimsize == r.dimsize && index < r.index); }
//SortNode() = default;
SortNode(int Index, hsize_t DimSize) : index{Index}, dimsize{DimSize} {}
};
bool operator<(const SortNode &l, const SortNode &r) { return l.dimsize < r.dimsize || (l.dimsize == r.dimsize && l.index < r.index); }
template <typename U>
void Hdf5Writer::writeMultiDim(const std::string &s, const std::vector<size_t> & Dimensions, const U * pDataRowMajor, size_t NumElements)
{