Section

std::chrono::system_clock

Class std::chrono::system_clock represents the system-wide real time wall clock.

# Declarations

class system_clock;

(since C++11)

# Notes

The system_clock’s time value can be internally adjusted at any time by the operating system, for example due to NTP synchronization or the user changing the system’s clock. Daylight Saving Time and time zone changes, however, do not affect it since it is based on the UTC time-zone.

# See also