mirror of
https://github.com/XRPLF/clio.git
synced 2026-07-28 17:40:20 +00:00
9 lines
180 B
C++
9 lines
180 B
C++
#pragma once
|
|
|
|
#include <cstddef>
|
|
|
|
namespace util {
|
|
static constexpr std::size_t kMillisecondsPerSecond = 1000;
|
|
static constexpr double kNanoPerSecond = 1.0e9;
|
|
} // namespace util
|