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

@@ -68,7 +68,7 @@ TEST(PcmTest, Interleave16)
TEST(PcmTest, Interleave24)
{
typedef uint8_t T;
using T = uint8_t;
static constexpr T src1[] = { 1, 2, 3, 4, 5, 6 };
static constexpr T src2[] = { 7, 8, 9, 10, 11, 12 };
static constexpr T src3[] = { 13, 14, 15, 16, 17, 18 };