Meson: partially clang-format all files

Change-Id: Ie621792417e89aa732311129f0cfa99a5147183a
Reviewed-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
Alexis Jeandet
2020-10-27 22:36:27 +01:00
committed by hjk
parent e35dfd592f
commit 09eeab7737
8 changed files with 17 additions and 23 deletions

View File

@@ -36,14 +36,14 @@ void impl_option_cat(QStringList &list, const First &first)
}
template<typename First, typename... T>
void impl_option_cat(QStringList &list, const First &first, const T &... args)
void impl_option_cat(QStringList &list, const First &first, const T &...args)
{
impl_option_cat(list, first);
impl_option_cat(list, args...);
}
template<typename... T>
QStringList options_cat(const T &... args)
QStringList options_cat(const T &...args)
{
QStringList result;
impl_option_cat(result, args...);