I wonder if the followings are compiler bugs:

class stuff_class
{
byte[1024*1024*16] arr; // Error: index 16777216 overflow for static array
}

struct stuff
{
byte[1024*1024*16] arr; // Error: index 16777216 overflow for static array
}

My project has just stopped for this reason, I was trying to hack into another process memory with something similar to this:
   stuff data;
ReadProcessMemory(Proc, (void*)0xA970F4, &data, stuff.sizeof, null); Target program is written in C++ and because of this limitation I'm not able to write equivalent code and here I'm stuck.

Reply via email to