UnitTests: Remove redundant template type specifers

This commit is contained in:
Dr. Dystopia
2025-05-16 21:09:52 +02:00
parent 404a7c75b2
commit 2102108b1a
6 changed files with 31 additions and 31 deletions

View File

@ -88,7 +88,7 @@ TEST(BitSet, BitOps)
TEST(BitSet, InitializerListsAndIteration)
{
std::vector<int> bits{1, 10, 15, 17, 20, 30};
std::vector bits{1, 10, 15, 17, 20, 30};
BitSet32 bs{1, 10, 15, 17, 20, 30};
auto vit = bits.begin();
for (auto i : bs)