diff options
| author | Marc Jeanmougin <marc@jeanmougin.fr> | 2019-01-02 10:27:41 +0000 |
|---|---|---|
| committer | Marc Jeanmougin <marc@jeanmougin.fr> | 2019-01-02 10:27:41 +0000 |
| commit | 555712c0db9d0b724828f45bd3ebc5f169405d9c (patch) | |
| tree | 38f858a4dd46684ae3a1d10ac23f2aafd5d03720 /src/util | |
| parent | modernize loops (2) (diff) | |
| download | inkscape-555712c0db9d0b724828f45bd3ebc5f169405d9c.tar.gz inkscape-555712c0db9d0b724828f45bd3ebc5f169405d9c.zip | |
modernize: add overrides
Diffstat (limited to 'src/util')
| -rw-r--r-- | src/util/ucompose.hpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/util/ucompose.hpp b/src/util/ucompose.hpp index f1e536c0c..e0d2fc273 100644 --- a/src/util/ucompose.hpp +++ b/src/util/ucompose.hpp @@ -248,9 +248,8 @@ namespace UStringPrivate // assemble string std::string str; - for (output_list::const_iterator i = output.begin(), end = output.end(); - i != end; ++i) - str += *i; + for (const auto & i : output) + str += i; return str; } |
