summaryrefslogtreecommitdiff
path: root/src/input.h
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@colm.net>2018-06-25 17:15:13 +0700
committerAdrian Thurston <thurston@colm.net>2018-06-25 17:15:13 +0700
commitff92e05d3ce12f66b09c40303e6dec8588e55c73 (patch)
treec229159a1b029192ae4d07168cfe439a9e67e295 /src/input.h
parent6418273d7abf921170da55b2b86ccb8bda7ffe5a (diff)
downloadcolm-ff92e05d3ce12f66b09c40303e6dec8588e55c73.tar.gz
removed the data section from the top level run buf type
data is entirely contained to the sub-types
Diffstat (limited to 'src/input.h')
-rw-r--r--src/input.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/input.h b/src/input.h
index 56d9b1f0..a4996ca8 100644
--- a/src/input.h
+++ b/src/input.h
@@ -62,15 +62,9 @@ enum run_buf_type {
struct seq_buf
{
enum run_buf_type type;
- long length;
struct colm_tree *tree;
struct stream_impl *si;
- long offset;
struct seq_buf *next, *prev;
-
- /* Must be at the end. We will grow this struct to add data if the input
- * demands it. */
- char data[FSM_BUFSIZE];
};
struct run_buf