Skip to content

Commit

Permalink
Replaced ETL_OR_STD::size with ETL_OR_STD17::size in unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jwellbelove committed Nov 10, 2024
1 parent 80a3ca0 commit c9180a4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion test/test_bitset_legacy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1498,7 +1498,7 @@ namespace
{
etl::bitset<32> b(0x12345678UL);

CHECK_EQUAL(32, ETL_OR_STD::size(b));
CHECK_EQUAL(32, ETL_OR_STD17::size(b));
}

//*************************************************************************
Expand Down
2 changes: 1 addition & 1 deletion test/test_bitset_new_default_element_type.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2728,7 +2728,7 @@ namespace
{
etl::bitset<32> b(0x12345678UL);

CHECK_EQUAL(32, ETL_OR_STD::size(b));
CHECK_EQUAL(32, ETL_OR_STD17::size(b));
}
};
}
2 changes: 1 addition & 1 deletion test/test_bitset_new_explicit_single_element_type.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2821,7 +2821,7 @@ namespace
{
etl::bitset<32, uint32_t> b(0x12345678UL);

CHECK_EQUAL(32, ETL_OR_STD::size(b));
CHECK_EQUAL(32, ETL_OR_STD17::size(b));
}
};
}
2 changes: 1 addition & 1 deletion test/test_bitset_new_ext_default_element_type.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2477,7 +2477,7 @@ namespace
{
etl::bitset<32> b(0x12345678UL);

CHECK_EQUAL(32, ETL_OR_STD::size(b));
CHECK_EQUAL(32, ETL_OR_STD17::size(b));
}
};
}
2 changes: 1 addition & 1 deletion test/test_bitset_new_ext_explicit_single_element_type.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2625,7 +2625,7 @@ namespace
{
etl::bitset<32, uint32_t> b(0x12345678UL);

CHECK_EQUAL(32, ETL_OR_STD::size(b));
CHECK_EQUAL(32, ETL_OR_STD17::size(b));
}
};
}

0 comments on commit c9180a4

Please sign in to comment.