Title: [215560] trunk/Source/WebKit/mac
Revision
215560
Author
[email protected]
Date
2017-04-20 09:16:43 -0700 (Thu, 20 Apr 2017)

Log Message

Build fix to start using C++14.
https://bugs.webkit.org/show_bug.cgi?id=171038

Reviewed by Alex Christensen.

Use 'c++14' instead of 'c++11' in order to use 'auto' in lambda.

* Configurations/WebKitLegacy.xcconfig:

Modified Paths

Diff

Modified: trunk/Source/WebKit/mac/ChangeLog (215559 => 215560)


--- trunk/Source/WebKit/mac/ChangeLog	2017-04-20 15:55:09 UTC (rev 215559)
+++ trunk/Source/WebKit/mac/ChangeLog	2017-04-20 16:16:43 UTC (rev 215560)
@@ -1,3 +1,14 @@
+2017-04-20  Dewei Zhu  <[email protected]>
+
+        Build fix to start using C++14.
+        https://bugs.webkit.org/show_bug.cgi?id=171038
+
+        Reviewed by Alex Christensen.
+
+        Use 'c++14' instead of 'c++11' in order to use 'auto' in lambda.
+
+        * Configurations/WebKitLegacy.xcconfig:
+
 2017-04-19  Youenn Fablet  <[email protected]>
 
         [Mac] Allow customizing H264 encoder

Modified: trunk/Source/WebKit/mac/Configurations/WebKitLegacy.xcconfig (215559 => 215560)


--- trunk/Source/WebKit/mac/Configurations/WebKitLegacy.xcconfig	2017-04-20 15:55:09 UTC (rev 215559)
+++ trunk/Source/WebKit/mac/Configurations/WebKitLegacy.xcconfig	2017-04-20 16:16:43 UTC (rev 215560)
@@ -124,5 +124,5 @@
 SUPPORTS_TEXT_BASED_API[sdk=iphone*] = $(USE_INTERNAL_SDK);
 SUPPORTS_TEXT_BASED_API[sdk=appletv*] = NO;
 SUPPORTS_TEXT_BASED_API[sdk=watch*] = NO;
-OTHER_TAPI_FLAGS[sdk=iphone*] = -x objective-c++ -std=c++11 -fno-rtti;
+OTHER_TAPI_FLAGS[sdk=iphone*] = -x objective-c++ -std=c++14 -fno-rtti;
 TAPI_VERIFY_MODE[sdk=iphone*] = Pedantic;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to