ZeroTierOne/ext/libpqxx-7.7.3/tools/pqxxthreadsafety.cxx
2022-06-24 10:12:36 -07:00

11 lines
193 B
C++

// Print thread-safety information for present libpqxx build.
#include <iostream>
#include "pqxx/util"
int main()
{
std::cout << pqxx::describe_thread_safety().description << std::endl;
}