我正在尝试键入别名std::make_pair
函数以将其用作abc::make_pair
函数。
auto(*make_pair)() = std::make_pair<T1, T2>;
namespace abc
{
template<class T, std::size_t N>
using array = std::array<T, N>;
template<class T1, class T2>
auto(*make_pair)() = std::make_pair<T1, T2>;
}
错误:
variable templates only available with -std=c++14 or -std=gnu++14 [-Werror]