2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-22 01:49:48 +00:00
kea/compiler-checks/boost-has-threads.cc
2025-03-17 12:16:26 +02:00

9 lines
127 B
C++

#include <boost/config.hpp>
#ifndef BOOST_HAS_THREADS
#error "boost will not use threads"
#endif
int main() {
return 0;
}