Title: [284190] trunk/Source/ThirdParty/libwebrtc
- Revision
- 284190
- Author
- [email protected]
- Date
- 2021-10-14 12:55:46 -0700 (Thu, 14 Oct 2021)
Log Message
Unreviewed build fix with latest SDKs.
* Source/third_party/libwebm/webm_parser/src/master_parser.h:
Modified Paths
Diff
Modified: trunk/Source/ThirdParty/libwebrtc/ChangeLog (284189 => 284190)
--- trunk/Source/ThirdParty/libwebrtc/ChangeLog 2021-10-14 19:26:21 UTC (rev 284189)
+++ trunk/Source/ThirdParty/libwebrtc/ChangeLog 2021-10-14 19:55:46 UTC (rev 284190)
@@ -1,3 +1,9 @@
+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-13 Cameron McCormack <[email protected]>
Override guessed color space for incoming H.264/265 streams
Modified: trunk/Source/ThirdParty/libwebrtc/Source/third_party/libwebm/webm_parser/src/master_parser.h (284189 => 284190)
--- trunk/Source/ThirdParty/libwebrtc/Source/third_party/libwebm/webm_parser/src/master_parser.h 2021-10-14 19:26:21 UTC (rev 284189)
+++ trunk/Source/ThirdParty/libwebrtc/Source/third_party/libwebm/webm_parser/src/master_parser.h 2021-10-14 19:55:46 UTC (rev 284190)
@@ -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