aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2018-02-01 09:22:14 +1100
committerNeil <nyamatongwe@gmail.com>2018-02-01 09:22:14 +1100
commit391226f67e1260eb77e7d3122d43281aa6ccd5ab (patch)
tree607ed69e2d8b8e4fa2882132a5290df6aff68357 /test
parent7d7d4e120999de66e4fc882f3d6224603ccb306f (diff)
downloadscintilla-mirror-391226f67e1260eb77e7d3122d43281aa6ccd5ab.tar.gz
Backport: Templatize RunStyles so it can be over ranges of different types and contain different style types.
Currently only instantiated over <int, int>. Backport of changeset 6445:89d992f380a1.
Diffstat (limited to 'test')
-rw-r--r--test/unit/testRunStyles.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/testRunStyles.cxx b/test/unit/testRunStyles.cxx
index e93278dbf..dd57948f2 100644
--- a/test/unit/testRunStyles.cxx
+++ b/test/unit/testRunStyles.cxx
@@ -22,7 +22,7 @@ using namespace Scintilla;
TEST_CASE("RunStyles") {
- RunStyles rs;
+ RunStyles<int, int> rs;
SECTION("IsEmptyInitially") {
REQUIRE(0 == rs.Length());