libcryfs/vendor/cryptopp/vendor_cryptopp/TestPrograms/test_cxx11_alignof.cpp

7 lines
111 B
C++

#include <cstddef>
int main (int argc, char* argv[])
{
std::size_t n = alignof(int);
return 0;
}