diff options
| author | Dr. Dystopia <jonis9898@hotmail.com> | 2025-05-16 21:09:52 +0200 |
|---|---|---|
| committer | Dr. Dystopia <jonis9898@hotmail.com> | 2025-05-16 21:09:52 +0200 |
| commit | 2102108b1a62c0e30f86e2ceada7d8be03603923 (patch) | |
| tree | 0a1c1e80e5c638104942006c267106a70f96a7ed /Source/UnitTests/Common/BitSetTest.cpp | |
| parent | 404a7c75b24da5842c46988bf19c1d5b330dcca1 (diff) | |
UnitTests: Remove redundant template type specifers
Diffstat (limited to 'Source/UnitTests/Common/BitSetTest.cpp')
| -rw-r--r-- | Source/UnitTests/Common/BitSetTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/UnitTests/Common/BitSetTest.cpp b/Source/UnitTests/Common/BitSetTest.cpp index 397f9fecbe..24937fdf4e 100644 --- a/Source/UnitTests/Common/BitSetTest.cpp +++ b/Source/UnitTests/Common/BitSetTest.cpp @@ -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) |
