Title: [111992] trunk/Source/WebCore
Revision
111992
Author
[email protected]
Date
2012-03-24 06:34:03 -0700 (Sat, 24 Mar 2012)

Log Message

Unreviewed, build fix since we use "-Werror=unused-but-set-variable".

The variable 'it' was set at TextureMapperShaderManager.h:110 but never used.

* platform/graphics/texmap/TextureMapperShaderManager.h:
(WebCore::TextureMapperShaderManager::getShaderProgram):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (111991 => 111992)


--- trunk/Source/WebCore/ChangeLog	2012-03-24 11:51:01 UTC (rev 111991)
+++ trunk/Source/WebCore/ChangeLog	2012-03-24 13:34:03 UTC (rev 111992)
@@ -1,3 +1,12 @@
+2012-03-24  Jesus Sanchez-Palencia  <[email protected]>
+
+        Unreviewed, build fix since we use "-Werror=unused-but-set-variable".
+
+        The variable 'it' was set at TextureMapperShaderManager.h:110 but never used.
+
+        * platform/graphics/texmap/TextureMapperShaderManager.h:
+        (WebCore::TextureMapperShaderManager::getShaderProgram):
+
 2012-03-24  Zeno Albisser  <[email protected]>
 
         [Qt][WK2] Make TextureMapperShaderManager::getShaderProgram() not be a template.

Modified: trunk/Source/WebCore/platform/graphics/texmap/TextureMapperShaderManager.h (111991 => 111992)


--- trunk/Source/WebCore/platform/graphics/texmap/TextureMapperShaderManager.h	2012-03-24 11:51:01 UTC (rev 111991)
+++ trunk/Source/WebCore/platform/graphics/texmap/TextureMapperShaderManager.h	2012-03-24 13:34:03 UTC (rev 111992)
@@ -107,7 +107,6 @@
         if (shaderType == Invalid)
             return program;
 
-        TextureMapperShaderProgramMap::iterator it = m_textureMapperShaderProgramMap.find(shaderType);
         switch (shaderType) {
         case Simple:
             program = TextureMapperShaderProgramSimple::create();
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to