diff options
author | nyamatongwe <unknown> | 2000-07-10 12:34:21 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2000-07-10 12:34:21 +0000 |
commit | 5494e069c7302bcaf61a640a0412870a432f964b (patch) | |
tree | 623ae378763aa83df870fb0f6df587d82fc0510a /src/CellBuffer.h | |
parent | 7fbee89bae51b6713d4862e0e851a9c3e6ef5777 (diff) | |
download | scintilla-mirror-5494e069c7302bcaf61a640a0412870a432f964b.tar.gz |
Dropped template as only ever instantiated for int and this allows
Scintilla to be template free.
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 7a3eabaeb..acac9fa2f 100644 --- a/src/CellBuffer.h +++ b/src/CellBuffer.h @@ -144,7 +144,7 @@ private: LineVector lv; - SVector<int, 4000> lineStates; + SVector lineStates; void GapTo(int position); void RoomFor(int insertionLength); |