diff options
-rw-r--r-- | raul/Atom.hpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/raul/Atom.hpp b/raul/Atom.hpp index 851ccf5..678871a 100644 --- a/raul/Atom.hpp +++ b/raul/Atom.hpp @@ -156,10 +156,8 @@ private: TypeID _type; union { - int32_t _int; - float _float; - int32_t _bool; - void* _blob; + intptr_t _val; + void* _blob; } _val; }; |