mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-08-22 01:49:48 +00:00
* 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
8 lines
196 B
C++
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);
|
|
}
|