struct SomeClass
{  static int* data;
   void static func()
   {data = (int*)(calloc(40, sizeof(int))); //отладчик ругается //здесь
    ...
   }
};
при (calloc(4, sizeof(int))) — не ругается
struct SomeClass
{  static int* data;
   void static func()
   {data = (int*)(calloc(40, sizeof(int))); //отладчик ругается //здесь
    ...
   }
};
при (calloc(4, sizeof(int))) — не ругается




























