test/test_pcm_*: use using instead of typedef

This commit is contained in:
Max Kellermann
2020-02-01 13:38:55 +01:00
parent 302eff0a59
commit faa04966af
3 changed files with 5 additions and 5 deletions

View File

@@ -373,7 +373,7 @@ template<SampleFormat F, class Traits=SampleTraits<F>>
static void
TestAlsaChannelOrder51()
{
typedef typename Traits::value_type value_type;
using value_type = typename Traits::value_type;
static constexpr value_type src[] = {
0, 1, 2, 3, 4, 5,
@@ -403,7 +403,7 @@ template<SampleFormat F, class Traits=SampleTraits<F>>
static void
TestAlsaChannelOrder71()
{
typedef typename Traits::value_type value_type;
using value_type = typename Traits::value_type;
static constexpr value_type src[] = {
0, 1, 2, 3, 4, 5, 6, 7,