amxmodx/compiler
Arkshine a873066466 Compiler: Fix enum field size was not taken into account when implicitly passed to a function.
Imported from Pawn 3.3.3930.

Example:

---

enum tag
{
  member[32]
}

new var[tag];

foo(const string[], size = sizeof(string))
{
    // size returns 1 before fix, 32, after.
}

public plugin_init()
{
    foo(var[member]);
}

---
2014-08-26 09:05:22 +02:00
..
amxxpc Remove "Done." text from compiler. 2014-08-16 18:03:34 +01:00
compile Update license headers for compiler. 2014-08-04 13:18:28 -05:00
libpc300 Compiler: Fix enum field size was not taken into account when implicitly passed to a function. 2014-08-26 09:05:22 +02:00