Replace typedef with using

This commit is contained in:
Benoit Blanchon
2024-10-23 15:54:08 +02:00
parent 61ec2c4f95
commit c6c0649d70
30 changed files with 54 additions and 54 deletions

View File

@@ -99,7 +99,7 @@ TEST_CASE("vector<int>") {
}
TEST_CASE("array<int, 2>") {
typedef std::array<int, 2> array_type;
using array_type = std::array<int, 2>;
SECTION("toJson") {
array_type v;