diff options
author | Roxie Linden <roxie@lindenlab.com> | 2024-03-13 11:36:21 -0700 |
---|---|---|
committer | Roxie Linden <roxie@lindenlab.com> | 2024-03-13 11:36:21 -0700 |
commit | e5a7c9cc4e4f80d94d939009aa3aee7b50e0b12c (patch) | |
tree | f0c22890b7e0da04e5c68308c8df99e64f439e22 /indra/llwebrtc | |
parent | 76460e8c2c33af185ae8641775d5673fcdab0759 (diff) |
some comments; allow proximal channel to retry when it drops
Diffstat (limited to 'indra/llwebrtc')
-rw-r--r-- | indra/llwebrtc/llwebrtc_impl.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/indra/llwebrtc/llwebrtc_impl.h b/indra/llwebrtc/llwebrtc_impl.h index 16afec061e..8bdd0334a9 100644 --- a/indra/llwebrtc/llwebrtc_impl.h +++ b/indra/llwebrtc/llwebrtc_impl.h @@ -40,8 +40,11 @@ #include "llwebrtc.h" // WebRTC Includes #ifdef WEBRTC_WIN -#pragma warning(disable : 4996) -#pragma warning(disable : 4068) +#pragma warning(disable : 4996) // ignore 'deprecated.' We don't use the functions marked + // deprecated in the webrtc headers, but msvc complains anyway. + // Clang doesn't, and that's generally what webrtc uses. +#pragma warning(disable : 4068) // ignore 'invalid pragma.' There are clang pragma's in + // the webrtc headers, which msvc doesn't recognize. #endif // WEBRTC_WIN #include "api/scoped_refptr.h" |