Title: [258483] trunk/Source/ThirdParty/ANGLE
Revision
258483
Author
[email protected]
Date
2020-03-15 18:41:15 -0700 (Sun, 15 Mar 2020)

Log Message

[ANGLE] Source/ThirdParty/ANGLE/src/libANGLE/Display.h:221:73: warning: implicitly-declared ‘egl::AttributeMap& egl::AttributeMap::operator=(const egl::AttributeMap&)’ is deprecated [-Wdeprecated-copy]
https://bugs.webkit.org/show_bug.cgi?id=209015

Patch by Michael Catanzaro <[email protected]> on 2020-03-15
Reviewed by Darin Adler.

Suppress compiler warning. If this were WebKit code, I might take the time to fix it, but
with third-party code it's probably best to just turn off warnings that upstream is not
using.

* CMakeLists.txt:

Modified Paths

Diff

Modified: trunk/Source/ThirdParty/ANGLE/CMakeLists.txt (258482 => 258483)


--- trunk/Source/ThirdParty/ANGLE/CMakeLists.txt	2020-03-16 01:17:03 UTC (rev 258482)
+++ trunk/Source/ThirdParty/ANGLE/CMakeLists.txt	2020-03-16 01:41:15 UTC (rev 258483)
@@ -166,6 +166,7 @@
 
 if (COMPILER_IS_GCC_OR_CLANG)
     WEBKIT_ADD_TARGET_CXX_FLAGS(ANGLE -Wno-cast-align
+                                      -Wno-deprecated-copy
                                       -Wno-suggest-attribute=format
                                       -Wno-type-limits
                                       -Wno-undef

Modified: trunk/Source/ThirdParty/ANGLE/ChangeLog (258482 => 258483)


--- trunk/Source/ThirdParty/ANGLE/ChangeLog	2020-03-16 01:17:03 UTC (rev 258482)
+++ trunk/Source/ThirdParty/ANGLE/ChangeLog	2020-03-16 01:41:15 UTC (rev 258483)
@@ -1,3 +1,16 @@
+2020-03-15  Michael Catanzaro  <[email protected]>
+
+        [ANGLE] Source/ThirdParty/ANGLE/src/libANGLE/Display.h:221:73: warning: implicitly-declared ‘egl::AttributeMap& egl::AttributeMap::operator=(const egl::AttributeMap&)’ is deprecated [-Wdeprecated-copy]
+        https://bugs.webkit.org/show_bug.cgi?id=209015
+
+        Reviewed by Darin Adler.
+
+        Suppress compiler warning. If this were WebKit code, I might take the time to fix it, but
+        with third-party code it's probably best to just turn off warnings that upstream is not
+        using.
+
+        * CMakeLists.txt:
+
 2020-03-02  Alan Coon  <[email protected]>
 
         Add new Mac target numbers
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to