https://github.com/mapbox/tippecanoe
Raw File
Tip revision: ddb79937d932f753edd5fba994b23281ff45f19c authored by Eric Fischer on 07 February 2020, 00:24:35 UTC
Merge pull request #841 from mapbox/fix-accumulate-mean
Tip revision: ddb7993
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