Open Source Computer Vision Library https://opencv.org/
 
 
 
 
 
 

12 lines
120 B

#include <atomic>
static int test()
{
std::atomic<long long> x;
return x;
}
int main()
{
return test();
}