diff options
author | Neil <nyamatongwe@gmail.com> | 2018-02-01 09:07:21 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2018-02-01 09:07:21 +1100 |
commit | 7d7d4e120999de66e4fc882f3d6224603ccb306f (patch) | |
tree | f684c46712831c1f4800bed37d9dd278645a8cd2 /src/CellBuffer.h | |
parent | 592b3ac7cd3651ccc58376b5323e231b0834e34b (diff) | |
download | scintilla-mirror-7d7d4e120999de66e4fc882f3d6224603ccb306f.tar.gz |
Backport: Templatize Partitioning so it can hold different types.
Backport of changeset 6444:1bd57324aa36.
Diffstat (limited to 'src/CellBuffer.h')
-rw-r--r-- | src/CellBuffer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CellBuffer.h b/src/CellBuffer.h index edc587dff..a12dc207f 100644 --- a/src/CellBuffer.h +++ b/src/CellBuffer.h @@ -24,7 +24,7 @@ public: */ class LineVector { - Partitioning starts; + Partitioning<int> starts; PerLine *perLine; public: |