Merge remote-tracking branch 'origin/stable'

This commit is contained in:
Dmytro Bogovych
2022-06-03 08:46:24 +03:00
1332 changed files with 134626 additions and 292 deletions

View File

@@ -69,6 +69,8 @@ public:
/** Returns the least significant word. */
uint32_t GetLSW() const { return lsw; }
uint64_t Get64() const { return (uint64_t)msw << 32 | lsw; }
private:
uint32_t msw,lsw;
};