2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-22 09:57:41 +00:00
kea/compiler-checks/chrono-same-duration.cc
Francis Dupont 7ddd6260ba
[#3443] Meson fixes
* Removed unsupported botan-3
* Fixed CHRONO_SAME_DURATION
* Updated crypto selection
* Updated botan config
* Removed pgsql server dependency
* Added header install to src/lib/util
* Added ALLOW_KEATEST
* Added TEST_CA_DIR
* Fixed again a typo
* Fixed gtest dependency
* Added log interprocess tests
* Added asiolink tests
* Added mysql tests
* Added mysql tests
* Changed hook suffix to so
* Reverted gtest dependency
* Removed testutils install
2025-02-04 16:29:03 +02:00

8 lines
196 B
C++

#include <chrono>
#include <type_traits>
int main() {
return(std::is_same<std::chrono::system_clock::duration,
std::chrono::steady_clock::duration>::value ? 0 : 1);
}