I am compiling the below program with g++ -std=c++11 lol.cpp
and getting a weird error. Please help!
#include <iostream>
#include <unordered_map>
#include <array>
int main(void)
{
std::unordered_map <std::array<int, 2>, int> abc;
}
These are the errors: https://gist.github.com/lokeshh/f1f007bc8d3756ff2c92