| 1 | #include <vector> |
|---|---|
| 2 | |
| 3 | typedef std::vector<long> vector_long; |
| 4 | int main(int argc, char **argv) { |
| 5 | std::vector<int> a = {3, 1, 2}; |
| 6 | vector_long b = {3, 1, 2}; |
| 7 | return 0; // Set break point at this line. |
| 8 | } |
| 9 |
| 1 | #include <vector> |
|---|---|
| 2 | |
| 3 | typedef std::vector<long> vector_long; |
| 4 | int main(int argc, char **argv) { |
| 5 | std::vector<int> a = {3, 1, 2}; |
| 6 | vector_long b = {3, 1, 2}; |
| 7 | return 0; // Set break point at this line. |
| 8 | } |
| 9 |