// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. #include "clock.h" #include namespace vespalib { Clock::Clock(const std::atomic & source) noexcept : _timeNS(source) { static_assert(std::atomic::is_always_lock_free); } Clock::~Clock() = default; }