Title: [122889] trunk/Tools
Revision
122889
Author
[email protected]
Date
2012-07-17 16:12:36 -0700 (Tue, 17 Jul 2012)

Log Message

Fix regression in style checker introduced in r122868.
https://bugs.webkit.org/show_bug.cgi?id=91470

Unreviewed, build fix.

* Scripts/webkitpy/style/checkers/cpp.py:
(_FileState.__init__):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (122888 => 122889)


--- trunk/Tools/ChangeLog	2012-07-17 23:11:23 UTC (rev 122888)
+++ trunk/Tools/ChangeLog	2012-07-17 23:12:36 UTC (rev 122889)
@@ -1,5 +1,15 @@
 2012-07-17  Dirk Pranke  <[email protected]>
 
+        Fix regression in style checker introduced in r122868.
+        https://bugs.webkit.org/show_bug.cgi?id=91470
+
+        Unreviewed, build fix.
+
+        * Scripts/webkitpy/style/checkers/cpp.py:
+        (_FileState.__init__):
+
+2012-07-17  Dirk Pranke  <[email protected]>
+
         nrwt: move the bulk of the "expected" output to printing.py
         https://bugs.webkit.org/show_bug.cgi?id=91442
 

Modified: trunk/Tools/Scripts/webkitpy/style/checkers/cpp.py (122888 => 122889)


--- trunk/Tools/Scripts/webkitpy/style/checkers/cpp.py	2012-07-17 23:11:23 UTC (rev 122888)
+++ trunk/Tools/Scripts/webkitpy/style/checkers/cpp.py	2012-07-17 23:12:36 UTC (rev 122889)
@@ -1170,6 +1170,7 @@
             self._is_c = None
         elif file_extension == 'c':
             self._is_c = True
+            self._is_objective_c = False
         else:
             self._is_objective_c = False
             self._is_c = False
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to