diff options
author | Tobias Markmann <tm@ayena.de> | 2016-04-04 14:41:44 (GMT) |
---|---|---|
committer | Tobias Markmann <tm@ayena.de> | 2016-04-04 14:41:44 (GMT) |
commit | 3c560e31b0f168da917e8d566db01fd1cd997d86 (patch) | |
tree | a6d1c5c276d3571c6303a31af9f3cefd34b13d52 /Swiften/Jingle | |
parent | 4f3821a090931499b9c68b3b3ad785a98ea9d742 (diff) | |
download | swift-3c560e31b0f168da917e8d566db01fd1cd997d86.zip swift-3c560e31b0f168da917e8d566db01fd1cd997d86.tar.bz2 |
Modernize code to use range based for loops using clang-tidy
Run 'clang-tidy -fix -checks=modernize-loop-convert' on all
source code files on OS X. This does not modernize platform
specific code on Linux and Windows
Test-Information:
Code builds and unit tests pass on OS X 10.11.4.
Change-Id: I65b99e0978cfab8ca6de2a3e5342e7a81416c12c
Diffstat (limited to 'Swiften/Jingle')
-rw-r--r-- | Swiften/Jingle/Jingle.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Swiften/Jingle/Jingle.h b/Swiften/Jingle/Jingle.h index 13c235b..0cd1a23 100644 --- a/Swiften/Jingle/Jingle.h +++ b/Swiften/Jingle/Jingle.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011 Isode Limited. + * Copyright (c) 2011-2016 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ @@ -14,9 +14,9 @@ namespace Swift { namespace Jingle { template<typename T> JingleContentPayload::ref getContentWithDescription(const std::vector<JingleContentPayload::ref>& contents) { - for (size_t i = 0; i < contents.size(); ++i) { - if (contents[i]->getDescription<T>()) { - return contents[i]; + for (const auto& content : contents) { + if (content->getDescription<T>()) { + return content; } } return JingleContentPayload::ref(); |