【发布时间】:2010-08-09 20:49:29
【问题描述】:
以下内容无法编译:
1 template<typename T>
2 void foo(std::vector<T>::iterator & i)
3 {
4 }
在 Visual Studio 上,我收到以下错误:
>(2) error C2065: 'i' : undeclared identifier
>(4) warning C4346: 'std::vector<_Tp>::iterator' : dependent name is not a type
prefix with 'typename' to indicate a type
>(4) error C2182: 'foo' : illegal use of type 'void'
>(4) error C2998: 'int foo' : cannot be a template definition
【问题讨论】:
-
找到这个duplicate,还有更多但我找不到它们。 :S