From 53bc9307d95a481340bab89c48a6fd037a78da52 Mon Sep 17 00:00:00 2001 From: skyjake Date: Thu, 25 Oct 2012 22:40:56 +0300 Subject: [PATCH] Tests: Print the size of the Vector component --- doomsday/tests/vectors/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/doomsday/tests/vectors/main.cpp b/doomsday/tests/vectors/main.cpp index 7f43aa41e3..da11b186a3 100644 --- a/doomsday/tests/vectors/main.cpp +++ b/doomsday/tests/vectors/main.cpp @@ -33,6 +33,7 @@ int main(int, char**) // buffer) is available. qDebug() << "Sizeof Vector2f:" << sizeof(a); + qDebug() << "Sizeof Vector2f.x:" << sizeof(a.x); qDebug() << "Sizeof Vector3f:" << sizeof(b); qDebug() << "Direct access to members:";