forked from qt-creator/qt-creator
Clang: Fix formatting
Change-Id: I1fd3d1ebb3788e39d3c900df6af92c0cd94d667b Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
This commit is contained in:
@@ -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));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user