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/RunStyles.h | |
parent | 45476f7be057d95d1157485d27c27ea388f25f04 (diff) | |
download | scintilla-mirror-171899690407c0c81e0444478cb7ef64a9291c11.tar.gz |
Templatize Partitioning so it can hold different types.
Diffstat (limited to 'src/RunStyles.h')
-rw-r--r-- | src/RunStyles.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/RunStyles.h b/src/RunStyles.h index 8997d924f..84221d512 100644 --- a/src/RunStyles.h +++ b/src/RunStyles.h @@ -14,7 +14,7 @@ namespace Scintilla { class RunStyles { private: - std::unique_ptr<Partitioning> starts; + std::unique_ptr<Partitioning<int>> starts; std::unique_ptr<SplitVector<int>> styles; int RunFromPosition(int position) const; int SplitRun(int position); |