LeviLamina
Loading...
Searching...
No Matches
PrepNumber.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace bx {
6
7struct PrepNumber {
8public:
9 // member variables
10 // NOLINTBEGIN
11 ::ll::TypedStorage<4, 4, int> negative;
12 ::ll::TypedStorage<4, 4, int> exponent;
13 ::ll::TypedStorage<8, 8, uint64> mantissa;
14 // NOLINTEND
15};
16
17} // namespace bx
Definition PrepNumber.h:7