Clang formatting.

This commit is contained in:
Lev Dragunov
2017-03-14 14:35:56 +03:00
committed by Patrick Niklaus
parent e9c0987e8a
commit 69422cc4e7
5 changed files with 59 additions and 47 deletions
+7 -3
View File
@@ -63,13 +63,17 @@ struct MatchParameters : public RouteParameters
false,
RouteParameters::GeometriesType::Polyline,
RouteParameters::OverviewType::Simplified,
{}), track_preprocessing(PreprocessingType::Simple)
{}),
track_preprocessing(PreprocessingType::Simple)
{
}
template <typename... Args>
MatchParameters(std::vector<unsigned> timestamps_, PreprocessingType track_preprocessing_, Args... args_)
: RouteParameters{std::forward<Args>(args_)...}, timestamps{std::move(timestamps_)}, track_preprocessing(track_preprocessing_)
MatchParameters(std::vector<unsigned> timestamps_,
PreprocessingType track_preprocessing_,
Args... args_)
: RouteParameters{std::forward<Args>(args_)...}, timestamps{std::move(timestamps_)},
track_preprocessing(track_preprocessing_)
{
}