Skip to content

Commit

Permalink
[macro_countermeasures] Sort by name
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkaratarakis committed Nov 17, 2023
1 parent dec99bd commit cea0fde
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions test/macro_countermeasures_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,39 +67,39 @@ TEST(MacroCountermeasures, DummyUsagesOfContainers)
// Dummy usages are not necessary, this is mostly a compile-only test.
// Counters tools that remove unused headers.
{
FixedDeque<int, 5> s{};
EnumMap<Color, int> s{};
(void)s;
}
{
FixedVector<int, 5> s{};
EnumSet<Color> s{};
(void)s;
}
{
FixedCircularDeque<int, 5> s{};
(void)s;
}
{
FixedStack<int, 5> s{};
FixedDeque<int, 5> s{};
(void)s;
}
{
FixedString<5> s{};
FixedMap<int, int, 5> s{};
(void)s;
}
{
FixedSet<int, 5> s{};
(void)s;
}
{
FixedMap<int, int, 5> s{};
FixedStack<int, 5> s{};
(void)s;
}
{
EnumSet<Color> s{};
FixedString<5> s{};
(void)s;
}
{
EnumMap<Color, int> s{};
FixedVector<int, 5> s{};
(void)s;
}
}
Expand Down

0 comments on commit cea0fde

Please sign in to comment.