// have different files for different information being stored.
uint16_t Type = 0;
- #pragma clang diagnostic push
- #pragma clang diagnostic ignored "-Wc++20-extensions"
// What follows are a set of flags that indicate useful things for when
// reading the data in the file.
- bool ConstantTSC : 1 = false;
- bool NonstopTSC : 1 = false;
- #pragma clang diagnostic pop
+ bool ConstantTSC : 1;
+ bool NonstopTSC : 1;
// The frequency by which TSC increases per-second.
alignas(8) uint64_t CycleFrequency = 0;
union {
- char FreeForm[16] = {};
+ char FreeForm[16];
// The current civiltime timestamp, as retrieved from 'clock_gettime'. This
// allows readers of the file to determine when the file was created or
// written down.