https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 21b9b1993fae93cd8c16675d757be42b5a1fa51f authored by Eric Fischer on 19 January 2018, 18:27:20 UTC
Merge pull request #515 from mapbox/vector-bounds
Tip revision: 21b9b19
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