certificate/include/cryptopp/TestPrograms/test_cxx11_alignof.cpp

7 lines
105 B
C++
Raw Normal View History

2025-06-26 15:15:38 +00:00
#include <cstddef>
int main (int argc, char* argv[])
{
std::size_t n = alignof(int);
return 0;
}