Advertisement
sehe

MSVC++ Errors

Nov 22nd, 2011
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.55 KB | None | 0 0
  1. test.cpp
  2. C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\xlocale(323) : warning C4530: C++ exception handler used, but unwind semantics are not enabled. Specify /EHsc
  3. C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\xutility(2144) : error C2106: '=' : left operand must be l-value
  4. C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\xutility(2165) : see reference to function template instantiation '_OutIt std::_Copy_impl<_InIt,_OutIt>(_InIt,_InIt,_OutIt,std::_Nonscalar_ptr_iterator_tag)' being compiled
  5. with
  6. [
  7. _OutIt=char (*)[4][6],
  8. _InIt=char (*)[4][6]
  9. ]
  10. C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\vector(719) : see reference to function template instantiation '_OutIt std::_Copy_impl<char(*)[4][6],char(*)[4][6]>(_InIt,_InIt,_OutIt)' being compiled
  11. with
  12. [
  13. _OutIt=char (*)[4][6],
  14. _InIt=char (*)[4][6]
  15. ]
  16. C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\vector(709) : while compiling class template member function 'std::vector<_Ty> &std::vector<_Ty>::operator =(const std::vector<_Ty> &)'
  17. with
  18. [
  19. _Ty=array
  20. ]
  21. test.cpp(9) : see reference to class template instantiation 'std::vector<_Ty>' being compiled
  22. with
  23. [
  24. _Ty=array
  25. ]
  26. C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\xutility(2514) : error C2106: '=' : left operand must be l-value
  27. C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\xutility(2535) : see reference to function template instantiation '_OutIt std::_Move<_InIt,_OutIt>(_InIt,_InIt,_OutIt,std::_Nonscalar_ptr_iterator_tag)' being compiled
  28. with
  29. [
  30. _OutIt=char (*)[4][6],
  31. _InIt=char (*)[4][6]
  32. ]
  33. C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\vector(1207) : see reference to function template instantiation '_OutIt std::_Move<char(*)[4][6],char(*)[4][6]>(_InIt,_InIt,_OutIt)' being compiled
  34. with
  35. [
  36. _OutIt=char (*)[4][6],
  37. _InIt=char (*)[4][6]
  38. ]
  39. C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\vector(1190) : while compiling class template member function 'std::_Vector_iterator<_Myvec> std::vector<_Ty>::erase(std::_Vector_const_iterator<_Myvec>,std::_Vector_const_iterator<_Myvec>)'
  40. with
  41. [
  42. _Myvec=std::_Vector_val<array ,std::allocator<array >>,
  43. _Ty=array
  44. ]
  45.  
  46.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement