Remove more unused structures from unit tests

The NFA, LBR no longer need scratch or the NFAContext structure stored
outside the NFA stack.
This commit is contained in:
Justin Viiret
2016-02-12 13:52:39 +11:00
committed by Matthew Barr
parent c3860a9f29
commit cf00094f24
2 changed files with 0 additions and 39 deletions

View File

@@ -36,7 +36,6 @@
#include "nfa/nfa_internal.h"
#include "nfa/nfa_api_util.h"
#include "nfagraph/ng_lbr.h"
#include "scratch.h"
#include "util/alloc.h"
#include "util/compile_context.h"
#include "grey.h"
@@ -155,9 +154,6 @@ protected:
// Space for stream state.
aligned_unique_ptr<char> stream_state;
// Space for NFAContext structure.
aligned_unique_ptr<void> nfa_context;
// Queue structure.
struct mq q;
};