mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 12:57:52 +00:00
time/system_clock_core: Remove unnecessary initializer
This is already initialized within the class body.
This commit is contained in:
parent
b533f18ab9
commit
7714b02d95
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@
|
|||
namespace Service::Time::Clock {
|
||||
|
||||
SystemClockCore::SystemClockCore(SteadyClockCore& steady_clock_core)
|
||||
: steady_clock_core{steady_clock_core}, is_initialized{} {
|
||||
: steady_clock_core{steady_clock_core} {
|
||||
context.steady_time_point.clock_source_id = steady_clock_core.GetClockSourceId();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue