webrtc/talk/examples/peerconnection/server
thakis@chromium.org 44010f3e52 win: Replace custom assert() macro with regular assert.h
The current code got added in libjingle r103; I don't see a good reason for it.
Things still build with plain old assert.h.

The custom assert was wrong: __debugbreak() is documented to return void,
so doing `cond ? true : __debugbreak()` shouldn't build (and it doesn't in
clang-cl). It's possible to make it build by writing
`cond ? true : (__debugbreak(), true)`, but just using the regular header
seems like a much better fix.

BUG=chromium:82385
Review URL: https://webrtc-codereview.appspot.com/19139004/


git-svn-id: http://webrtc.googlecode.com/svn/trunk@7007 4adac7df-926f-26a2-2b94-8c16560cd09d
2014-08-29 03:00:15 +00:00
..
data_socket.cc Update talk folder to revision=49713299. 2013-07-22 21:07:49 +00:00
data_socket.h Adds trunk/talk folder of revision 359 from libjingles google code to 2013-07-10 00:45:36 +00:00
main.cc (Auto)update libjingle 73222930-> 73226398 2014-08-13 17:26:08 +00:00
peer_channel.cc Handle the case if an unusually long peer name is provided in the peerconnection example. 2014-07-15 08:56:07 +00:00
peer_channel.h Adds trunk/talk folder of revision 359 from libjingles google code to 2013-07-10 00:45:36 +00:00
server_test.html Adds trunk/talk folder of revision 359 from libjingles google code to 2013-07-10 00:45:36 +00:00
utils.cc Adds trunk/talk folder of revision 359 from libjingles google code to 2013-07-10 00:45:36 +00:00
utils.h win: Replace custom assert() macro with regular assert.h 2014-08-29 03:00:15 +00:00