From 3ad0572d2e26b9736cfa6ec751d1829403ffde54 Mon Sep 17 00:00:00 2001 From: Greg Clayton Date: Tue, 15 Mar 2011 04:29:42 +0000 Subject: [PATCH] Make the first vector of "long" instead of "int" so we can tell the difference easier since "short" ends up with "short int" in the template allocators. llvm-svn: 127661 --- lldb/test/unique-types/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lldb/test/unique-types/main.cpp b/lldb/test/unique-types/main.cpp index 536bf6cd9de5..51ff3ad1f7bf 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 ints; + std::vector longs; std::vector 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; }