Title: [128512] trunk/Source/WebCore
Revision
128512
Author
[email protected]
Date
2012-09-13 15:13:07 -0700 (Thu, 13 Sep 2012)

Log Message

Fix build.

* platform/graphics/Latin1TextIterator.h:
(WebCore::Latin1TextIterator::Latin1TextIterator):
(Latin1TextIterator):
m_endCharacter is an unused private member variable, so just remove it to appease newer versions of clang.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (128511 => 128512)


--- trunk/Source/WebCore/ChangeLog	2012-09-13 21:51:59 UTC (rev 128511)
+++ trunk/Source/WebCore/ChangeLog	2012-09-13 22:13:07 UTC (rev 128512)
@@ -1,3 +1,12 @@
+2012-09-13  Anders Carlsson  <[email protected]>
+
+        Fix build.
+
+        * platform/graphics/Latin1TextIterator.h:
+        (WebCore::Latin1TextIterator::Latin1TextIterator):
+        (Latin1TextIterator):
+        m_endCharacter is an unused private member variable, so just remove it to appease newer versions of clang.
+
 2012-09-13  Hans Muller  <[email protected]>
 
         Typo in RenderStyle::isFlippedLinesWritingMode(), small refactoring possible

Modified: trunk/Source/WebCore/platform/graphics/Latin1TextIterator.h (128511 => 128512)


--- trunk/Source/WebCore/platform/graphics/Latin1TextIterator.h	2012-09-13 21:51:59 UTC (rev 128511)
+++ trunk/Source/WebCore/platform/graphics/Latin1TextIterator.h	2012-09-13 22:13:07 UTC (rev 128512)
@@ -30,11 +30,10 @@
 public:
     // The passed in LChar pointer starts at 'currentCharacter'. The iterator operates on the range [currentCharacter, lastCharacter].
     // 'endCharacter' denotes the maximum length of the UChar array, which might exceed 'lastCharacter'.
-    Latin1TextIterator(const LChar* characters, int currentCharacter, int lastCharacter, int endCharacter)
+    Latin1TextIterator(const LChar* characters, int currentCharacter, int lastCharacter, int /*endCharacter*/)
         : m_characters(characters)
         , m_currentCharacter(currentCharacter)
         , m_lastCharacter(lastCharacter)
-        , m_endCharacter(endCharacter)
     {
     }
 
@@ -61,7 +60,6 @@
     const LChar* m_characters;
     int m_currentCharacter;
     int m_lastCharacter;
-    int m_endCharacter;
 };
 
 }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to