VSA: Discard timestamp top bit

This commit is contained in:
Max Brombach
2025-09-24 14:13:29 -04:00
committed by Kyle Schwarz
parent 58b22da09b
commit f22d666f94
28 changed files with 33 additions and 33 deletions
+1 -1
View File
@@ -57,7 +57,7 @@ public:
*
* @return The timestamp of this record
*/
uint64_t getTimestamp() override { return timestamp; }
uint64_t getTimestamp() override { return timestamp & UINT63_MAX; }
private:
/**