הערה
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות להיכנס או לשנות מדריכי כתובות.
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות לשנות מדריכי כתובות.
array size overflow
Remarks
An array exceeds the 2GB limit. Reduce the size of the array.
Example
The following example generates C2141.
// C2141.cpp
// processor: IPF
class A {
short m_n;
};
int main()
{
A* pA = (A*)(-1);
pA = new A[0x8000000000000001]; // C2141
A* pA2 = (A*)(-1);
pA2 = new A[0x80000000000000F]; // OK
}