aboutsummaryrefslogtreecommitdiff
path: root/Client/ThirdParty/fix32/fix32.hpp
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2021-12-02 21:07:58 +0800
committerchai <chaifix@163.com>2021-12-02 21:07:58 +0800
commitb62f87c9496cb38f9c49139386edf85d4fa14390 (patch)
tree73862c5d4a25213db9c7db90610289251ef10c75 /Client/ThirdParty/fix32/fix32.hpp
parentfdd228071a3112aeebda20766c7df3b20b8651aa (diff)
*misc
Diffstat (limited to 'Client/ThirdParty/fix32/fix32.hpp')
-rw-r--r--Client/ThirdParty/fix32/fix32.hpp4
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; }