diff options
| author | Neil <nyamatongwe@gmail.com> | 2018-03-16 16:57:06 +1100 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2018-03-16 16:57:06 +1100 |
| commit | 191d250adfd9d50846db5350641d279cad39c325 (patch) | |
| tree | 745391be4a4c56cf6823da5ac840b912ef83557d /src/Decoration.cxx | |
| parent | 601277bddb0a4d871b8ab90e88b5d7dfde3ec2a3 (diff) | |
| download | scintilla-mirror-191d250adfd9d50846db5350641d279cad39c325.tar.gz | |
Remove line-end white space.
Diffstat (limited to 'src/Decoration.cxx')
| -rw-r--r-- | src/Decoration.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Decoration.cxx b/src/Decoration.cxx index 6f75058dd..5a653a589 100644 --- a/src/Decoration.cxx +++ b/src/Decoration.cxx @@ -59,11 +59,11 @@ Decoration *DecorationList::Create(int indicator, Sci::Position length) { decoNew->rs.InsertSpace(0, length); std::vector<std::unique_ptr<Decoration>>::iterator it = std::lower_bound( - decorationList.begin(), decorationList.end(), decoNew, + decorationList.begin(), decorationList.end(), decoNew, [](const std::unique_ptr<Decoration> &a, const std::unique_ptr<Decoration> &b) { return a->Indicator() < b->Indicator(); }); - std::vector<std::unique_ptr<Decoration>>::iterator itAdded = + std::vector<std::unique_ptr<Decoration>>::iterator itAdded = decorationList.insert(it, std::move(decoNew)); SetView(); |
