summaryrefslogtreecommitdiff
path: root/location.c
diff options
context:
space:
mode:
Diffstat (limited to 'location.c')
-rw-r--r--location.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/location.c b/location.c
index 8e68ca3..74b032c 100644
--- a/location.c
+++ b/location.c
@@ -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;
}