This question sure has a simple answer, Look at the following code:
1 2 3 4 5 6 7 8 9 10 11 12 13
#include <iostream>
#include <vector>
using std::string;
using std::cout;
using std::cin;
using std::endl;
using std::vector;
int main() {
typedef pair <string, int> mix;
return 0;
}
This code here is throwing the following error: error: expected initializer before '<' token
I have read the documentation, and have found nothing about what could possibly be generating such error.
Please help me !