mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-01-31 09:15:11 +00:00
7 lines
111 B
C++
7 lines
111 B
C++
|
#include <cstddef>
|
||
|
int main (int argc, char* argv[])
|
||
|
{
|
||
|
std::size_t n = alignof(int);
|
||
|
return 0;
|
||
|
}
|