diff options
| author | Neil <nyamatongwe@gmail.com> | 2018-02-01 09:22:14 +1100 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2018-02-01 09:22:14 +1100 |
| commit | 391226f67e1260eb77e7d3122d43281aa6ccd5ab (patch) | |
| tree | 607ed69e2d8b8e4fa2882132a5290df6aff68357 /src/Decoration.h | |
| parent | 7d7d4e120999de66e4fc882f3d6224603ccb306f (diff) | |
| download | scintilla-mirror-391226f67e1260eb77e7d3122d43281aa6ccd5ab.tar.gz | |
Backport: Templatize RunStyles so it can be over ranges of different types and contain different style types.
Currently only instantiated over <int, int>.
Backport of changeset 6445:89d992f380a1.
Diffstat (limited to 'src/Decoration.h')
| -rw-r--r-- | src/Decoration.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Decoration.h b/src/Decoration.h index ab9912935..79ee9ef73 100644 --- a/src/Decoration.h +++ b/src/Decoration.h @@ -12,7 +12,7 @@ namespace Scintilla { class Decoration { int indicator; public: - RunStyles rs; + RunStyles<int, int> rs; explicit Decoration(int indicator_); ~Decoration(); |
