// SPDX-License-Identifier: BSD-2-Clause // author: Max Kellermann #ifndef CHRONO_UTIL_HXX #define CHRONO_UTIL_HXX #include template constexpr bool IsNegative(const std::chrono::time_point p) { return p < std::chrono::time_point(); } #endif