From 991d739bb02b3506da5a0af0edd9a4fd505373a3 Mon Sep 17 00:00:00 2001 From: Leo Tenenbaum Date: Fri, 27 Sep 2019 23:34:29 -0400 Subject: added converter from named arguments to non-named --- util/location.c | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 util/location.c (limited to 'util/location.c') diff --git a/util/location.c b/util/location.c deleted file mode 100644 index 4b450ce..0000000 --- a/util/location.c +++ /dev/null @@ -1,10 +0,0 @@ -typedef uint32_t LineNo; -typedef struct { - LineNo line; - char *code; - const char *filename; -} Location; - -bool location_after(Location a, Location b) { /* a is after b? */ - return a.code > b.code; -} -- cgit v1.2.3