diff options
| author | Martin Ridgers <[email protected]> | 2021-10-20 14:44:25 +0200 |
|---|---|---|
| committer | Martin Ridgers <[email protected]> | 2021-10-25 08:46:34 +0200 |
| commit | 768d18ed30dbbc2555f0e22854898288429d7115 (patch) | |
| tree | c475db0686ca9ca56a0a837c7be979537d1821f9 /zencore/include | |
| parent | Grouped DateTime methods all together (diff) | |
| download | zen-768d18ed30dbbc2555f0e22854898288429d7115.tar.xz zen-768d18ed30dbbc2555f0e22854898288429d7115.zip | |
Made a note about a tick's unit and DateTime's epoch
Diffstat (limited to 'zencore/include')
| -rw-r--r-- | zencore/include/zencore/compactbinary.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zencore/include/zencore/compactbinary.h b/zencore/include/zencore/compactbinary.h index 06331c510..0be23ea11 100644 --- a/zencore/include/zencore/compactbinary.h +++ b/zencore/include/zencore/compactbinary.h @@ -63,7 +63,7 @@ public: private: void Set(int Year, int Month, int Day, int Hours, int Minutes, int Seconds, int MilliSecond); - uint64_t Ticks; + uint64_t Ticks; // 1 tick == 0.1us == 100ns, epoch == Jan 1st 0001 }; class TimeSpan |