Add any tag to WritePackCell and ReadPackCell natives (bug 6001, r=asherkin)

This commit is contained in:
Kyle Sanderson 2014-01-17 23:19:13 -05:00
parent 9831316aff
commit ac4a381295

View File

@ -50,7 +50,7 @@ native Handle:CreateDataPack();
* @noreturn * @noreturn
* @error Invalid handle. * @error Invalid handle.
*/ */
native WritePackCell(Handle:pack, cell); native WritePackCell(Handle:pack, any:cell);
/** /**
* Packs a float into a data pack. * Packs a float into a data pack.
@ -79,7 +79,7 @@ native WritePackString(Handle:pack, const String:str[]);
* @return Cell value. * @return Cell value.
* @error Invalid handle, or bounds error. * @error Invalid handle, or bounds error.
*/ */
native ReadPackCell(Handle:pack); native any:ReadPackCell(Handle:pack);
/** /**
* Reads a float from a data pack. * Reads a float from a data pack.