https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 370252731aec4718aa37d40d6ab285776a339d50 authored by Eric Fischer on 29 May 2019, 01:22:28 UTC
Print details of the feature when Wagyu throws an exception
Tip revision: 3702527
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