]> git.tdb.fi Git - libs/gl.git/blobdiff - source/vertexbuilder.cpp
Style update: add spaces around assignment operators
[libs/gl.git] / source / vertexbuilder.cpp
index d6759d7e85be93d873f44b3c873b0cc2e4006fda..3d3ec79b650b9821d0f0346198a354930e43f9f6 100644 (file)
@@ -18,11 +18,11 @@ VertexBuilder::VertexBuilder():
 
 void VertexBuilder::attrib(unsigned i, float x, float y, float z, float w)
 {
-       Attrib &a=av[i];
-       a.x=x;
-       a.y=y;
-       a.z=z;
-       a.w=w;
+       Attrib &a = av[i];
+       a.x = x;
+       a.y = y;
+       a.z = z;
+       a.w = w;
 }
 
 } // namespace GL