mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-02-23 18:50:17 +00:00
11 lines
193 B
C++
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;
|
|
}
|