From 3fb7394db8f02e80659eddb134e3ecddc0ba0cfe Mon Sep 17 00:00:00 2001 From: Vincent van Ravesteijn Date: Tue, 1 Apr 2014 20:30:36 +0200 Subject: [PATCH] Initialize variable to fix Counter 0 problem Fixes: #9070 --- src/Counters.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Counters.cpp b/src/Counters.cpp index 5a6b922e5e..5fb4f1b0b3 100644 --- a/src/Counters.cpp +++ b/src/Counters.cpp @@ -182,7 +182,7 @@ Counter::StringMap & Counter::flatLabelStrings(bool in_appendix) const } -Counters::Counters() : appendix_(false), subfloat_(false) +Counters::Counters() : appendix_(false), subfloat_(false), longtable_(false) { layout_stack_.push_back(0); counter_stack_.push_back(from_ascii("")); -- 2.39.2