You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The cpprest codebase gates usage of stdext::checked_array_iterator on _WIN32. When building with libc++ on windows this results in the following error:
containerstream.h(404,47): error: no member named 'checked_array_iterator' in namespace 'stdext'
std::copy(readBegin, readEnd, stdext::checked_array_iterator<_CharType*>(ptr, count));
_SECURE_SCL or _ITERATOR_DEBUG_LEVEL would be more appropriate checks.
The text was updated successfully, but these errors were encountered:
The cpprest codebase gates usage of stdext::checked_array_iterator on _WIN32. When building with libc++ on windows this results in the following error:
_SECURE_SCL or _ITERATOR_DEBUG_LEVEL would be more appropriate checks.
The text was updated successfully, but these errors were encountered: