diff options
Diffstat (limited to 'Client/ThirdParty/fix32/fix32.hpp')
-rw-r--r-- | Client/ThirdParty/fix32/fix32.hpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Client/ThirdParty/fix32/fix32.hpp b/Client/ThirdParty/fix32/fix32.hpp index 7999ad4..e6945d8 100644 --- a/Client/ThirdParty/fix32/fix32.hpp +++ b/Client/ThirdParty/fix32/fix32.hpp @@ -5,13 +5,11 @@ extern "C" { #include "math-sll/math-sll.h"
}
-typedef sll fixed32_t;
-
// Q32.32
class Fix32
{
public:
- sll value;
+ sll value; // signed long long
inline Fix32() { value = 0; }
inline Fix32(const Fix32 &inValue) { value = inValue.value; }
|