这里有一个令人尴尬的简单问题。我正在尝试使用std::array
并在错误的第一个障碍中绊倒......
implicit instantiation of undefined template 'std::__1::array<char,10>'
给出错误的代码如下所示。我现在可以解决它std::map
,但我确信修复一定很简单!
enum p_t {
EMPTY = 0
,BORDER_L
// ...
,BORDER_BR
,DATUM
,NUMEL };
class PlotChars
{
array<char, p_t::NUMEL> charContainer;
// error on this ^ line:
// implicit instantiation of undefined template 'std::__1::array<char,10>'
};