diff options
author | Michael Forney <mforney@mforney.org> | 2019-02-24 12:41:11 -0800 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2019-02-24 12:41:11 -0800 |
commit | 1a47f6d1fcce8fe8e61a628c3c30030e4f4c71ed (patch) | |
tree | 72695ae8282aadff0e45889311355741e54da4b8 | |
parent | af126585dd1af74c5dcceda73e49ac9246c524b2 (diff) | |
download | cproc-1a47f6d1fcce8fe8e61a628c3c30030e4f4c71ed.tar.xz |
Remove unused field
-rw-r--r-- | scan.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -15,10 +15,9 @@ struct buffer { struct scanner { int chr; - struct token next; + bool usebuf; struct location loc; struct buffer buf; - bool usebuf; }; static void |