Add __attribute__ ((unsued)) to runtime functions for gcc compilers

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6932 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
John Lenz 2005-02-01 18:58:47 +00:00
commit 15392cf5f7

View file

@ -38,8 +38,12 @@
with your compiler or so.
*/
#ifndef SWIGRUNTIME
#ifdef __GNUC__
#define SWIGRUNTIME __attribute__ ((unused)) static
#else
#define SWIGRUNTIME static
#endif
#endif
#ifndef SWIGRUNTIMEINLINE
#define SWIGRUNTIMEINLINE SWIGRUNTIME SWIGINLINE
#endif