mirror of
https://github.com/thunderbrewhq/bc.git
synced 2025-12-12 10:02:30 +00:00
fix(time): Milliseconds and Seconds return storage should be 64-bit
This commit is contained in:
parent
08ac95300a
commit
5cf50be7e2
2 changed files with 4 additions and 4 deletions
|
|
@ -110,11 +110,11 @@ uint64_t Microseconds() {
|
|||
return System_Time::Microseconds();
|
||||
}
|
||||
|
||||
uint32_t Milliseconds() {
|
||||
uint64_t Milliseconds() {
|
||||
return System_Time::Milliseconds();
|
||||
}
|
||||
|
||||
uint32_t Seconds() {
|
||||
uint64_t Seconds() {
|
||||
return System_Time::Seconds();
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -29,9 +29,9 @@ uint64_t Nanoseconds();
|
|||
|
||||
uint64_t Microseconds();
|
||||
|
||||
uint32_t Milliseconds();
|
||||
uint64_t Milliseconds();
|
||||
|
||||
uint32_t Seconds();
|
||||
uint64_t Seconds();
|
||||
|
||||
} // namespace Time
|
||||
} // namespace Blizzard
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue