Title: [284205] branches/safari-613.1.5-branch/Source/ThirdParty/libwebrtc
Revision
284205
Author
[email protected]
Date
2021-10-14 15:42:40 -0700 (Thu, 14 Oct 2021)

Log Message

Cherry-pick r284190. rdar://problem/84277677

    Unreviewed build fix with latest SDKs.

    * Source/third_party/libwebm/webm_parser/src/master_parser.h:

    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@284190 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: branches/safari-613.1.5-branch/Source/ThirdParty/libwebrtc/ChangeLog (284204 => 284205)


--- branches/safari-613.1.5-branch/Source/ThirdParty/libwebrtc/ChangeLog	2021-10-14 22:42:36 UTC (rev 284204)
+++ branches/safari-613.1.5-branch/Source/ThirdParty/libwebrtc/ChangeLog	2021-10-14 22:42:40 UTC (rev 284205)
@@ -1,3 +1,19 @@
+2021-10-14  Alan Coon  <[email protected]>
+
+        Cherry-pick r284190. rdar://problem/84277677
+
+    Unreviewed build fix with latest SDKs.
+    
+    * Source/third_party/libwebm/webm_parser/src/master_parser.h:
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@284190 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    2021-10-14  Chris Dumez  <[email protected]>
+
+            Unreviewed build fix with latest SDKs.
+
+            * Source/third_party/libwebm/webm_parser/src/master_parser.h:
+
 2021-10-06  Youenn Fablet  <[email protected]>
 
         ObjectiveC WebRTC frame buffers are autoreleased late, especially on Debug builds

Modified: branches/safari-613.1.5-branch/Source/ThirdParty/libwebrtc/Source/third_party/libwebm/webm_parser/src/master_parser.h (284204 => 284205)


--- branches/safari-613.1.5-branch/Source/ThirdParty/libwebrtc/Source/third_party/libwebm/webm_parser/src/master_parser.h	2021-10-14 22:42:36 UTC (rev 284204)
+++ branches/safari-613.1.5-branch/Source/ThirdParty/libwebrtc/Source/third_party/libwebm/webm_parser/src/master_parser.h	2021-10-14 22:42:40 UTC (rev 284205)
@@ -149,6 +149,11 @@
 
   using StdHashId = std::hash<std::underlying_type<Id>::type>;
 
+#if defined(WEBRTC_WEBKIT_BUILD) && defined(__clang__)
+#pragma clang diagnostic push
+#pragma clang diagnostic ignored "-Wdeprecated-declarations"
+#endif
+
   // Hash functor for hashing Id enums for storage in std::unordered_map.
   struct IdHash : StdHashId {
     // Type aliases for conforming to the std::hash interface.
@@ -161,6 +166,10 @@
     }
   };
 
+#if defined(WEBRTC_WEBKIT_BUILD) && defined(__clang__)
+#pragma clang diagnostic pop
+#endif
+
   // The parser for parsing element Ids.
   IdParser id_parser_;
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to