Mercurial > hg > svcore
diff data/fileio/CSVFormat.h @ 1521:2d291eac9f21 import-audio-data
Ignore non-value columns when guessing sample range
author | Chris Cannam |
---|---|
date | Wed, 12 Sep 2018 15:27:30 +0100 |
parents | ad46f6e80369 |
children | 64ef24ebb19c |
line wrap: on
line diff
--- a/data/fileio/CSVFormat.h Wed Sep 12 13:56:56 2018 +0100 +++ b/data/fileio/CSVFormat.h Wed Sep 12 15:27:30 2018 +0100 @@ -133,11 +133,6 @@ return m_columnQualities; } - bool isColumnNumeric(int i) const { - return (m_columnQualities.size() > i && - m_columnQualities[i] & ColumnNumeric); - } - // read-only; only valid if format has been guessed: const QList<QStringList> &getExample() const { return m_example;