|
From: <ai...@us...> - 2009-02-01 00:17:26
|
Revision: 9420
http://plplot.svn.sourceforge.net/plplot/?rev=9420&view=rev
Author: airwin
Date: 2009-02-01 00:17:21 +0000 (Sun, 01 Feb 2009)
Log Message:
-----------
Fix Linux build error caused by inconsistent declaration and definition of
SWIG_itable_size.
Modified Paths:
--------------
trunk/bindings/lua/plplotluac.i
Modified: trunk/bindings/lua/plplotluac.i
===================================================================
--- trunk/bindings/lua/plplotluac.i 2009-01-31 23:02:40 UTC (rev 9419)
+++ trunk/bindings/lua/plplotluac.i 2009-02-01 00:17:21 UTC (rev 9420)
@@ -44,7 +44,7 @@
#define LUA_FREE_ARRAY(PTR) if(PTR) {free(PTR); PTR=NULL;}
/* super macro to declare array typemap helper fns */
-int SWIG_itable_size(lua_State* L, int index);
+SWIGINTERN int SWIG_itable_size(lua_State* L, int index);
#define LUA_DECLARE_TYPEMAP_ARR_FN(NAME,TYPE)\
SWIGINTERN int LUA_read_##NAME##_num_array(lua_State* L,int index,TYPE *array,int size){\
int i;\
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|