mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-23 18:09:48 +00:00
8 lines
143 B
C++
8 lines
143 B
C++
#include <cstddef>
|
|
int main(int argc, char* argv[])
|
|
{
|
|
enum {N = (sizeof(std::size_t) == 8 ? 8 : -1)};
|
|
int x[N];
|
|
return 0;
|
|
}
|