Variant INT and REAL are now 64 bits (other types remain at 32)

This commit is contained in:
Juan Linietsky
2017-01-08 20:58:39 -03:00
parent 94ee7798ce
commit 13cdccf23b
9 changed files with 202 additions and 63 deletions

View File

@ -141,7 +141,7 @@ private:
union {
bool _bool;
int _int;
int64_t _int;
double _real;
Matrix32 *_matrix32;
AABB* _aabb;