From 391226f67e1260eb77e7d3122d43281aa6ccd5ab Mon Sep 17 00:00:00 2001 From: Neil Date: Thu, 1 Feb 2018 09:22:14 +1100 Subject: Backport: Templatize RunStyles so it can be over ranges of different types and contain different style types. Currently only instantiated over . Backport of changeset 6445:89d992f380a1. --- src/ContractionState.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/ContractionState.h') diff --git a/src/ContractionState.h b/src/ContractionState.h index 44a531ca5..7f11196ea 100644 --- a/src/ContractionState.h +++ b/src/ContractionState.h @@ -17,9 +17,9 @@ class SparseVector; */ class ContractionState { // These contain 1 element for every document line. - std::unique_ptr visible; - std::unique_ptr expanded; - std::unique_ptr heights; + std::unique_ptr> visible; + std::unique_ptr> expanded; + std::unique_ptr> heights; std::unique_ptr> foldDisplayTexts; std::unique_ptr> displayLines; Sci::Line linesInDocument; -- cgit v1.2.3