From 2471b770a8cd4e78fdffcbfac616c4afd5a40f57 Mon Sep 17 00:00:00 2001 From: Alex Coyte Date: Thu, 18 Jun 2015 14:55:34 +1000 Subject: [PATCH] we no longer store the history len --- src/rose/rose_dump.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/rose/rose_dump.cpp b/src/rose/rose_dump.cpp index f53ebe61..75b831a5 100644 --- a/src/rose/rose_dump.cpp +++ b/src/rose/rose_dump.cpp @@ -914,8 +914,7 @@ void roseDumpText(const RoseEngine *t, FILE *f) { t->lookaroundTableOffset - t->lookaroundReachOffset); fprintf(f, "state space required : %u bytes\n", t->stateOffsets.end); - fprintf(f, " - history buffer : %u bytes (+1 for len)\n", - t->historyRequired); + fprintf(f, " - history buffer : %u bytes\n", t->historyRequired); fprintf(f, " - exhaustion vector : %u bytes\n", (t->ekeyCount + 7) / 8); fprintf(f, " - role state mmbit : %u bytes\n", t->stateSize); fprintf(f, " - floating matcher : %u bytes\n", t->floatingStreamState);