From 0585742a20c43f3750bb0e679fdf2b8ac21b8c71 Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Fri, 3 Nov 2017 16:50:59 -0700 Subject: [PATCH] Remove unused constant and out-of-date comment --- csv.cpp | 2 -- tile.cpp | 5 ----- 2 files changed, 7 deletions(-) diff --git a/csv.cpp b/csv.cpp index 5e9a9d7..30dd5c9 100644 --- a/csv.cpp +++ b/csv.cpp @@ -1,7 +1,5 @@ #include "csv.hpp" -#define MAXLINE 10000 /* XXX */ - std::vector csv_split(const char *s) { std::vector ret; diff --git a/tile.cpp b/tile.cpp index cd8d1af..ad4779f 100644 --- a/tile.cpp +++ b/tile.cpp @@ -163,11 +163,6 @@ void decode_meta(int m, std::vector const &metakeys, std::vector &keys1, const std::vector &values1, char *stringpool1, int m2, const std::vector &keys2, const std::vector &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);