aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/CellBuffer.h
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2018-02-01 09:07:21 +1100
committerNeil <nyamatongwe@gmail.com>2018-02-01 09:07:21 +1100
commit171899690407c0c81e0444478cb7ef64a9291c11 (patch)
tree194ce6b75d2b20d608d3b6427891f89715785857 /src/CellBuffer.h
parent45476f7be057d95d1157485d27c27ea388f25f04 (diff)
downloadscintilla-mirror-171899690407c0c81e0444478cb7ef64a9291c11.tar.gz
Templatize Partitioning so it can hold different types.
Diffstat (limited to 'src/CellBuffer.h')
-rw-r--r--src/CellBuffer.h2
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: