mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-08-22 01:49:48 +00:00
9 lines
224 B
C++
9 lines
224 B
C++
|
#include <chrono>
|
||
|
#include <type_traits>
|
||
|
|
||
|
int main() {
|
||
|
static_assert(std::is_same<std::chrono::system_clock::duration,
|
||
|
std::chrono::steady_clock::duration>::value,
|
||
|
"");
|
||
|
}
|