Guest User

Untitled

a guest
Nov 20th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. 1> Generating Code...
  2. 1>C:Program Files (x86)Microsoft Visual Studio 10.0VCincludestring.h(54): warning RC4011: identifier truncated to '_CRT_SECURE_CPP_OVERLOAD_STANDA'
  3. 1>
  4. 2>C:Program Files (x86)Microsoft Visual Studio 10.0VCincludestring.h(76): warning RC4011: identifier truncated to '_CRT_SECURE_CPP_OVERLOAD_SECURE'
  5. 1>
  6. 1> Info.vcxproj -> C:UsersgramtDocumentsVisual Studio 2010ProjectsInfoDebugInfo.exe
  7.  
  8. 1>C:Program Files (x86)Microsoft Visual Studio 10.0VCincludestring.h(54): warning RC4011: identifier truncated to '_CRT_SECURE_CPP_OVERLOAD_STANDA'
  9.  
  10. #if defined(__cplusplus) && _CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES_MEMORY
  11. extern "C++"
  12. {
  13. #ifndef _CRT_ENABLE_IF_DEFINED
  14. #define _CRT_ENABLE_IF_DEFINED
  15. template<bool _Enable, typename _Ty>
  16. struct _CrtEnableIf;
  17.  
  18. template<typename _Ty>
  19. struct _CrtEnableIf<true, _Ty>
  20. {
  21. typedef _Ty _Type;
  22. };
  23. #endif
  24. template <size_t _Size, typename _DstType>
  25. inline
  26. typename _CrtEnableIf<(_Size > 1), void *>::_Type __cdecl memcpy(_DstType (&_Dst)[_Size], _In_opt_bytecount_(_SrcSize) const void *_Src, _In_ size_t _SrcSize) _CRT_SECURE_CPP_NOTHROW
  27. {
  28. return memcpy_s(_Dst, _Size * sizeof(_DstType), _Src, _SrcSize) == 0 ? _Dst : 0;
  29. }
  30. }
  31. #endif
  32.  
  33. 2>C:Program Files (x86)Microsoft Visual Studio 10.0VCincludestring.h(76): warning RC4011: identifier truncated to '_CRT_SECURE_CPP_OVERLOAD_SECURE'
  34.  
  35. #if defined(__cplusplus) && _CRT_SECURE_CPP_OVERLOAD_SECURE_NAMES_MEMORY
  36. extern "C++"
  37. {
  38. template <size_t _Size, typename _DstType>
  39. inline
  40. errno_t __CRTDECL memcpy_s(_DstType (&_Dst)[_Size], _In_opt_bytecount_(_SrcSize) const void * _Src, _In_ rsize_t _SrcSize) _CRT_SECURE_CPP_NOTHROW </P>
  41. {
  42. return memcpy_s(_Dst, _Size * sizeof(_DstType), _Src, _SrcSize);
  43. }
  44. }
  45. #endif
  46.  
  47. warning RC4011: identifier truncated to '_CRT_SECURE_CPP_OVERLOAD_STANDA'
  48. ^^^^^^^^^^^^^^^^^^^^
Add Comment
Please, Sign In to add comment