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 | 36e4a162b950bcee61f0fe27cbacd3e85a7bdb55 (patch) | |
| tree | a68c95ca6f86006e39eeda67c2d9f32fa21ccb35 /src/Decoration.h | |
| parent | 171899690407c0c81e0444478cb7ef64a9291c11 (diff) | |
| download | scintilla-mirror-36e4a162b950bcee61f0fe27cbacd3e85a7bdb55.tar.gz | |
Templatize RunStyles so it can be over ranges of different types and contain
different style types.
Currently only instantiated over <int, int>.
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(); |
