summaryrefslogtreecommitdiff
path: root/location.c
blob: 48fd26995f3ec940679477cf3fdc7b82f161c345 (plain)
1
2
3
4
static bool location_after(Location a, Location b) { /* a is after b? */
	assert(a.ctx == b.ctx);
	return a.code > b.code;
}