Clang: Fix formatting

Change-Id: I1fd3d1ebb3788e39d3c900df6af92c0cd94d667b
Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
This commit is contained in:
Marco Bubke
2017-08-29 18:41:21 +02:00
parent 890e2bd517
commit ecad2cc621

View File

@@ -71,7 +71,7 @@ void append(Target &target, const Source &source)
target.reserve(target.size() + source.size());
for(auto &&entry : clonedSource)
for (auto &&entry : clonedSource)
target.push_back(ValueType(std::move(entry)));
}
@@ -82,7 +82,7 @@ void append(Target &target, Source &source)
using ValueType = typename Target::value_type;
target.reserve(target.size() + source.size());
for(auto &&entry : source)
for (auto &&entry : source)
target.push_back(ValueType(entry));
}