https://github.com/mapbox/tippecanoe
Raw File
Tip revision: e6fb32042966233c7f57f0d85c20ee16d1b4313d authored by Eric Fischer on 14 August 2018, 23:04:17 UTC
Treat compound tagging like any other tagging. Add postfilter test.
Tip revision: e6fb320
pool.hpp
#ifndef POOL_HPP
#define POOL_HPP

struct stringpool {
	unsigned long left = 0;
	unsigned long right = 0;
	unsigned long off = 0;
};

long long addpool(struct memfile *poolfile, struct memfile *treefile, const char *s, char type);

#endif
back to top