https://github.com/mapbox/tippecanoe
Raw File
Tip revision: fba9b4b0edee5b2ef00317761d55a46be3d46c26 authored by Eric Fischer on 24 April 2018, 14:00:37 UTC
Clip lines and points late in the process too
Tip revision: fba9b4b
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