removed reference to contributers

Patch #1640862 (malloc.h to stdlib.h)

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9643 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Mark Gossage 2007-01-23 01:29:00 +00:00
commit 571a84c9e7
3 changed files with 4 additions and 3 deletions

View file

@ -1,6 +1,9 @@
Version 1.3.32 (in progress)
============================
01/23/2007: mgossage
[Lua] Patch #1640862: <malloc.h> replaced by <stdlib.h>
01/22/2007: mgossage
[Lua] Added a lua specific carrays.i which adds the operator[] support.
modified the main code to make it not emit all the class member functions & accessors

View file

@ -1,8 +1,6 @@
/* Small change to the standard carrays.i
renaming the field to __getitem__ & __setitem__
for operator[] access
Thanks to Fabian Franz <FabianFranz@gmx.de> for suggesting this
*/
%rename(__getitem) *::getitem; // the v=X[i] (get operator)
%rename(__setitem) *::setitem; // the X[i]=v (set operator)

View file

@ -15,7 +15,7 @@ extern "C" {
#include "lua.h"
#include "lauxlib.h"
#include <malloc.h>
#include <stdlib.h> /* for malloc */
#include <assert.h> /* for a few sanity tests */
/* -----------------------------------------------------------------------------