https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 949468e6f5679b159ee0dba937dddc18b977e942 authored by Eric Fischer on 07 November 2018, 22:45:08 UTC
Merge pull request #658 from mapbox/coerce-feature-ids
Tip revision: 949468e
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