Files
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;
}