Remove all uses of LOVE_UNUSED, and simply not name the arguments instead

This commit is contained in:
Bart van Strien
2011-12-20 20:26:17 +01:00
parent 9fb63dc4b8
commit 53e010a832
4 changed files with 6 additions and 8 deletions
+1 -2
View File
@@ -587,7 +587,7 @@ namespace opengl
lineWidth = width;
}
void Graphics::setLineStyle(Graphics::LineStyle style )
void Graphics::setLineStyle(Graphics::LineStyle/* style*/ )
{
//// XXX: actually enables antialiasing for _all_ polygons.
//// may need investigation if wanted or not
@@ -599,7 +599,6 @@ namespace opengl
// glEnable (GL_POLYGON_SMOOTH);
// glHint (GL_POLYGON_SMOOTH_HINT, GL_NICEST);
//}
LOVE_UNUSED(style);
}
void Graphics::setLine( float width, Graphics::LineStyle style )
+1 -2
View File
@@ -88,9 +88,8 @@ namespace opengl
delete [] buf;
}
void *VertexArray::map(GLenum access)
void *VertexArray::map(GLenum/* access*/)
{
LOVE_UNUSED(access);
return buf;
}