Cosmetics

master
Sébastien Villemot 2022-09-20 15:29:03 +02:00
parent 7f1b4fcc20
commit 98d4f922ca
No known key found for this signature in database
GPG Key ID: 2CECE9350ECEBE4A
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ template<typename T, size_t... Indices>
auto
vectorToTupleHelper(const vector<T> &v, index_sequence<Indices...>)
{
return tuple(v[Indices] ...);
return tuple{v[Indices]...};
}
template<size_t N, typename T>
auto