Title: [134578] trunk
Revision
134578
Author
commit-qu...@webkit.org
Date
2012-11-14 01:57:50 -0800 (Wed, 14 Nov 2012)

Log Message

[EFL] Turn on error on warnings for "sign-compare"
https://bugs.webkit.org/show_bug.cgi?id=101761

Patch by KyungTae Kim <ktf....@samsung.com> on 2012-11-14
Reviewed by Gyuyoung Kim.

Remove "-Wno-error=sign-compare" to turn on error on warnings for "sign-compare"

* Source/cmake/WebKitHelpers.cmake:

Modified Paths

Diff

Modified: trunk/ChangeLog (134577 => 134578)


--- trunk/ChangeLog	2012-11-14 09:57:24 UTC (rev 134577)
+++ trunk/ChangeLog	2012-11-14 09:57:50 UTC (rev 134578)
@@ -1,3 +1,14 @@
+2012-11-14  KyungTae Kim  <ktf....@samsung.com>
+
+        [EFL] Turn on error on warnings for "sign-compare"
+        https://bugs.webkit.org/show_bug.cgi?id=101761
+
+        Reviewed by Gyuyoung Kim.
+
+        Remove "-Wno-error=sign-compare" to turn on error on warnings for "sign-compare"
+
+        * Source/cmake/WebKitHelpers.cmake:
+
 2012-11-13  Hugo Parente Lima  <hugo.l...@openbossa.org>
 
         FindGLIB.cmake fails do find glib gmodule module.

Modified: trunk/Source/cmake/WebKitHelpers.cmake (134577 => 134578)


--- trunk/Source/cmake/WebKitHelpers.cmake	2012-11-14 09:57:24 UTC (rev 134577)
+++ trunk/Source/cmake/WebKitHelpers.cmake	2012-11-14 09:57:50 UTC (rev 134578)
@@ -42,7 +42,7 @@
 
     # Enable errors on warning
     IF (OPTION_ENABLE_WERROR)
-        SET(OLD_COMPILE_FLAGS "${OLD_COMPILE_FLAGS} -Werror -Wno-error=unused-parameter -Wno-error=sign-compare")
+        SET(OLD_COMPILE_FLAGS "${OLD_COMPILE_FLAGS} -Werror -Wno-error=unused-parameter")
     ENDIF ()
 
     # Disable C++0x compat warnings for GCC >= 4.6.0 until we build
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to