diff options
author | chai <chaifix@163.com> | 2021-12-02 21:07:58 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-12-02 21:07:58 +0800 |
commit | b62f87c9496cb38f9c49139386edf85d4fa14390 (patch) | |
tree | 73862c5d4a25213db9c7db90610289251ef10c75 /Client/ThirdParty/fix32/fix32.hpp | |
parent | fdd228071a3112aeebda20766c7df3b20b8651aa (diff) |
*misc
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; }
|