aboutsummaryrefslogtreecommitdiff
path: root/type.h
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2019-03-13 18:51:25 -0700
committerMichael Forney <mforney@mforney.org>2019-03-13 18:51:25 -0700
commit1bc3f5f9bdf956e50cb38046f41bf5f61b49d306 (patch)
tree82b2996e72756bb9e8526e97c5111720a467871d /type.h
parent9d3c8863100040175c56d7ba53ca98a9ad637e57 (diff)
Drop base parameter from mktype
Diffstat (limited to 'type.h')
-rw-r--r--type.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/type.h b/type.h
index 0da444b..ad85b73 100644
--- a/type.h
+++ b/type.h
@@ -91,7 +91,7 @@ struct type {
};
};
-struct type *mktype(enum typekind, struct type *base);
+struct type *mktype(enum typekind);
struct type *mkqualifiedtype(struct type *, enum typequalifier);
struct type *mkpointertype(struct type *);
struct type *mkarraytype(struct type *, uint64_t);