WebRTC.org website (*** This repository is deprecated ***) - The documentation to contribute to native code is available at https://webrtc.googlesource.com/src/+/refs/heads/master/docs/native-code/index.md, info about WebRTC is available at https://webrtc.org)
I compiled webrtc code and generated webrtc.lib and peerconnection_client.exe and peerconnection_server.exe,
but I have a strange error when I run peerconnection_client.exe program in Windows x86 Debug configuration on Visual Studio :
Error message:
C:\Program Files(x86)\Microsoft Visual Studio\2019\Professinal\VC\msvc\14.25.28610\include\deque
line 279
I compiled webrtc code and generated webrtc.lib and peerconnection_client.exe and peerconnection_server.exe, but I have a strange error when I run peerconnection_client.exe program in Windows x86 Debug configuration on Visual Studio :
Error message:
C:\Program Files(x86)\Microsoft Visual Studio\2019\Professinal\VC\msvc\14.25.28610\include\deque line 279
Expression:cannot increment value-initialized deque iterator
//////////////////
_Deque_const_iterator& operator++() {
if _ITERATOR_DEBUG_LEVEL != 0
here----> _STL_VERIFY(this->_Myoff < _Mycont->_Myoff + _Mycont->_Mysize, "cannot increment deque iterator past end");**
endif // _ITERATOR_DEBUG_LEVEL != 0
}
///////////
With the same configuration (except is_debug=false), the relase version runs well `