Magically fix weird random lighting with -Os and g++-4.5.3.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51392
master
Cyp 2011-12-03 11:17:06 +01:00
parent 9474ae3715
commit 33ab0461bd
1 changed files with 0 additions and 1 deletions

View File

@ -59,7 +59,6 @@ struct Vector3f
Vector3f() {}
Vector3f(float x, float y, float z) : x(x), y(y), z(z) {}
Vector3f(Vector3i const &v) : x(v.x), y(v.y), z(v.z) {}
Vector3f(Vector3f const &v) : x(v.x), y(v.y), z(v.z) {}
Vector3f(Vector2f const &xy, float z) : x(xy.x), y(xy.y), z(z) {}
float x, y, z;