创建数组作为无序映射的键时的编译错误

时间:2016-02-03 17:08:30

标签: c++ arrays unordered-map

我正在使用g++ -std=c++11 lol.cpp编译以下程序并得到一个奇怪的错误。请帮忙!

#include <iostream>
#include <unordered_map>
#include <array>

int main(void)
{
  std::unordered_map <std::array<int, 2>, int> abc;
}

这些是错误:https://gist.github.com/lokeshh/f1f007bc8d3756ff2c92

0 个答案:

没有答案