mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-01-06 13:08:41 +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;
|
||
|
}
|