diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2019-05-11 15:28:03 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2019-05-11 15:28:03 -0700 |
commit | 0ddf2e8b84e29054e58730cc5707a6910c4f3f21 (patch) | |
tree | 9b5fe9d2433958ca172066003745ca07ffc89ccf | |
parent | 62b3ad0287220d5f0cd29bc4376399fce2692d41 (diff) | |
download | txr-0ddf2e8b84e29054e58730cc5707a6910c4f3f21.tar.gz txr-0ddf2e8b84e29054e58730cc5707a6910c4f3f21.tar.bz2 txr-0ddf2e8b84e29054e58730cc5707a6910c4f3f21.zip |
structs: eliminate declaration of nonexistent var.
* struct.h (static_slot_s): Dangling declaration removed.
-rw-r--r-- | struct.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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, |