diff options
author | Roxie Linden <roxie@lindenlab.com> | 2023-09-10 19:24:03 -0700 |
---|---|---|
committer | Roxie Linden <roxie@lindenlab.com> | 2024-02-08 18:34:01 -0800 |
commit | 3fbb8a72eb8c775f8f7ac74ac0e502afb0469aa6 (patch) | |
tree | 4782f6ecd11839d3f5942f6ae83028b2d7fbeda6 | |
parent | 5e2431f83cdc9f93d6a26f9cb27f1143d8c70c8c (diff) |
Fix windows pragma error
-rw-r--r-- | indra/llwebrtc/llwebrtc_impl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/llwebrtc/llwebrtc_impl.h b/indra/llwebrtc/llwebrtc_impl.h index 07c0f514b2..d439bd253d 100644 --- a/indra/llwebrtc/llwebrtc_impl.h +++ b/indra/llwebrtc/llwebrtc_impl.h @@ -41,6 +41,7 @@ // WebRTC Includes #ifdef WEBRTC_WIN #pragma warning(disable : 4996) +#pragma warning(disable : 4068) #endif // WEBRTC_WIN #include "api/scoped_refptr.h" |