First Commit
This commit is contained in:
11
externals/cryptopp/TestPrograms/test_cxx11_staticinit.cpp
vendored
Normal file
11
externals/cryptopp/TestPrograms/test_cxx11_staticinit.cpp
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
// https://en.cppreference.com/w/cpp/feature_test
|
||||
// Apple bug https://bugs.llvm.org/show_bug.cgi?id=47012.
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
#if __cpp_threadsafe_static_init >= 200806L
|
||||
int x[1];
|
||||
#else
|
||||
int x[-1];
|
||||
#endif
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user