summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2019-05-11 15:28:03 -0700
committerKaz Kylheku <kaz@kylheku.com>2019-05-11 15:28:03 -0700
commit2b9aa387aed625f2904d745662847a337c0d0e2e (patch)
tree9b5fe9d2433958ca172066003745ca07ffc89ccf
parentf046ace5dd2244d5b775ff0da7ebd2ec479505bc (diff)
downloadtxr-2b9aa387aed625f2904d745662847a337c0d0e2e.tar.gz
txr-2b9aa387aed625f2904d745662847a337c0d0e2e.tar.bz2
txr-2b9aa387aed625f2904d745662847a337c0d0e2e.zip
structs: eliminate declaration of nonexistent var.
* struct.h (static_slot_s): Dangling declaration removed.
-rw-r--r--struct.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/struct.h b/struct.h
index 857bce92..481ca679 100644
--- a/struct.h
+++ b/struct.h
@@ -27,7 +27,7 @@
extern val struct_type_s, meth_s, print_s, make_struct_lit_s;
extern val init_k, postinit_k;
-extern val slot_s, static_slot_s;
+extern val slot_s;
extern struct cobj_ops struct_inst_ops;
val make_struct_type(val name, val super,
val static_slots, val slots,