Slashdot Mirror


User: mellum

mellum's activity in the archive.

Stories
0
Comments
1
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1

  1. Re:Nice on Quake 3: Arena Source GPL'ed · · Score: 1

    C does not allow accessing an object of type float via an lvalue of type int. You need to either use a union (still invalid, but supported by most compilers) or memcpy. In fact this code will not work with gcc 4.1, which has improved aliasing analysis.