diff options
-rw-r--r-- | lldb/test/unique-types/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/test/unique-types/main.cpp b/lldb/test/unique-types/main.cpp index 536bf6cd9de..51ff3ad1f7b 100644 --- a/lldb/test/unique-types/main.cpp +++ b/lldb/test/unique-types/main.cpp @@ -5,12 +5,12 @@ int main (int argc, char const *argv[], char const *envp[]) { - std::vector<int> ints; + std::vector<long> longs; std::vector<short> shorts; for (int i=0; i<12; i++) { - ints.push_back(i); - shorts.push_back((short)i); + longs.push_back(i); + shorts.push_back(i); } return 0; } |