最佳答案
我有以下模板声明:
template <typename T>
void IterTable(int& rIdx,
std::vector<double>& rVarVector,
const std::vector<T>& aTable,
const T aValue,
T aLowerBound = -(std::numeric_limits<T>::max()), //illegal token on right side of '::' shows here
bool aLeftOpen = true) const;
如前所述,它抛出非法令牌错误,在“-(std: : numeric _ limit: : max ())”行上。我从一些旧的 Linux 源代码中得到了这些代码,我正试图在 Windows 上编译它们。知道问题出在哪吗?
编辑: 使用 min ()也会失败,编译器输出是:
Error 92 error C2589: '::' : illegal token on right side of '::' c:\projects\r&d\prepaydll\include\cfcdefault.h 216 PrepayDLL
Error 93 error C2059: syntax error : '::' c:\projects\r&d\prepaydll\include\cfcdefault.h 216 PrepayDLL
第216行,就是前面提到的那行。