Remove unused constant and out-of-date comment

This commit is contained in:
Eric Fischer 2017-11-03 16:50:59 -07:00
parent 0801a9324b
commit 0585742a20
2 changed files with 0 additions and 7 deletions

View File

@ -1,7 +1,5 @@
#include "csv.hpp"
#define MAXLINE 10000 /* XXX */
std::vector<std::string> csv_split(const char *s) {
std::vector<std::string> ret;

View File

@ -163,11 +163,6 @@ void decode_meta(int m, std::vector<long long> const &metakeys, std::vector<long
}
int metacmp(int m1, const std::vector<long long> &keys1, const std::vector<long long> &values1, char *stringpool1, int m2, const std::vector<long long> &keys2, const std::vector<long long> &values2, char *stringpool2) {
// XXX
// Ideally this would make identical features compare the same lexically
// even if their attributes were declared in different orders in different instances.
// In practice, this is probably good enough to put "identical" features together.
int i;
for (i = 0; i < m1 && i < m2; i++) {
mvt_value key1 = retrieve_string(keys1[i], stringpool1, NULL);