1

我有一个我在 vs 2010 中编写的项目。在这个项目中使用了闪电战。但是现在当我在 2013 年打开这个项目并尝试运行它时。一些错误说:

错误 C2955:“std::rank”:使用类模板需要模板参数列表 ~~\blitz\indexexpr.h 69 1 MOM

所以它出现在 indexexpr.h

    static const int 
    numArrayOperands = 0, 
    numIndexPlaceholders = 1,
    rank = N+1;   //error here

我该如何解决?我从互联网上看到类似的错误。但是他们的错误出现在 slice.h 中。

4

1 回答 1

1

根据Drew Dormann链接的讨论,您应该替换

static const int 
    numArrayOperands = 0, 
    numIndexPlaceholders = 1,
    rank = N+1;

static const int numArrayOperands = 0;
static const int numIndexPlaceholders = 1;
static const int rank = N+1;

免责声明:我不知道这是否有效。

于 2015-01-27T22:46:33.760 回答