我在我的项目中收到以下警告(发布和调试模式):
C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\concurrent_vector.h(1599): warning C4189: '_Array' : local variable is initialized but not referenced
C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\concurrent_vector.h(1598) : while compiling class template member function 'void Concurrency::concurrent_vector<_Ty>::_Destroy_array(void *,Concurrency::concurrent_vector<_Ty>::size_type)'
with
[
_Ty=Vector3i
]
d:\Some_path\somefile.h(780) : see reference to class template instantiation 'Concurrency::concurrent_vector<_Ty>' being compiled
with
[
_Ty=Vector3i
]
somefile.h 是我的文件,第 780 行有以下代码:
Concurrency::concurrent_vector<Vector3i> m_ovColors;
Vector3i 是这样的:
template<typename T> class TVector3 {
public:
T x, y, z;
}
typedef TVector3<int> Vector3i;
concurrent_vector.h 中第 1598 行的代码是(第 1598 行只是'{'):
template<typename _Ty, class _Ax>
void concurrent_vector<_Ty, _Ax>::_Destroy_array( void* _Begin, size_type _N )
{
_Ty* _Array = static_cast<_Ty*>(_Begin);
for( size_type _J=_N; _J>0; --_J )
_Array[_J-1].~_Ty(); // destructors are supposed to not throw any exceptions
}
这可能是什么原因?这个 somefile.h 当包含在其他项目中时不会发出那种警告。