Another Error
-
f:\installation\vc98\include\xmemory(37) : warning C4100: '_P' : unreferenced formal parameter f:\installation\vc98\include\xmemory(68) : see reference to function template instantiation 'void __cdecl std::_Destroy(unsigned int *)' being compiled Error.cpp I also got this error. It seems that it caused by the include header. How can i solve this? Thanks again.
-
f:\installation\vc98\include\xmemory(37) : warning C4100: '_P' : unreferenced formal parameter f:\installation\vc98\include\xmemory(68) : see reference to function template instantiation 'void __cdecl std::_Destroy(unsigned int *)' being compiled Error.cpp I also got this error. It seems that it caused by the include header. How can i solve this? Thanks again.
That is only a warning so you don't have to fix anything. The warning says that the function std::_Destroy(unsigned int *) did not use the one parameter. John