mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-11-02 07:31:36 +01:00
Replace typedef with using
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user