14.01.2015, 04:55
When I compile with the following enumerator, which happens to be extremely important to my script, the compiler crashes with the old "Pawn Compiler library has encountered a problem and needs to close. We are sorry for the inconvenience." message.
But, when I compile it without or with the enum modified, it continues compilation. For example, all of these let the compiler continue!
EDIT: I've just tested commenting the array that uses this enum and keeping the enum right, the compiler continues. But either way this needs fixed for any efficiency.
pawn Код:
enum CellDataEnum
{
in,
up,
left,
prevx, prevy
};
pawn Код:
enum CellData //CellData is already defined, so this causes errors, but no crash.
{
in,
up,
left,
prevx, prevy
};
enum Ceaefefe //Allows continuing (with errors of course)
{
in,
up,
left,
prevx, prevy
};
enum //Allows continuing (with errors of course)
{
in,
up,
left,
prevx, prevy
};
EDIT: I've just tested commenting the array that uses this enum and keeping the enum right, the compiler continues. But either way this needs fixed for any efficiency.