diff options
| author | Jordan Woyak <jordan.woyak@gmail.com> | 2025-05-18 02:12:45 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-18 02:12:45 -0500 |
| commit | 2e22a3cf425caae0a3cb52cc4deca7008209955f (patch) | |
| tree | 558307be915d9708eaae615380e187044d0dd83d /Source/UnitTests/Common/BitSetTest.cpp | |
| parent | 88005deaeb26c3bcb4205ca08f93bfdc3b9088db (diff) | |
| parent | 2102108b1a62c0e30f86e2ceada7d8be03603923 (diff) | |
Merge pull request #13672 from tygyh/UnitTests/Remove-redundant-template-type-specifiers
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) |
