2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-22 09:57:41 +00:00
kea/compiler-checks/boost-has-threads.cc

9 lines
127 B
C++
Raw Permalink Normal View History

2025-03-15 00:30:58 +01:00
#include <boost/config.hpp>
#ifndef BOOST_HAS_THREADS
#error "boost will not use threads"
#endif
int main() {
return 0;
}