diff options
Diffstat (limited to 'location.c')
-rw-r--r-- | location.c | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -1,10 +1,3 @@ -typedef uint32_t LineNo; -typedef struct { - LineNo line; - char *code; - const char *filename; -} Location; - static bool location_after(Location a, Location b) { /* a is after b? */ return a.code > b.code; } |