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 | 171899690407c0c81e0444478cb7ef64a9291c11 (patch) | |
tree | 194ce6b75d2b20d608d3b6427891f89715785857 /src/CellBuffer.h | |
parent | 45476f7be057d95d1157485d27c27ea388f25f04 (diff) | |
download | scintilla-mirror-171899690407c0c81e0444478cb7ef64a9291c11.tar.gz |
Templatize Partitioning so it can hold different types.
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: |