Fix to keep gcc-3.4 happy

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6523 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2004-10-26 21:18:09 +00:00
commit 62456756e8

View file

@ -172,20 +172,20 @@ DohData(const DOH *obj) {
}
/* -----------------------------------------------------------------------------
* DohCmp()
* RawData()
* ----------------------------------------------------------------------------- */
#define RawData(b) ((b->type->doh_data) ? (b->type->doh_data)(b) : 0)
/*
static void *
RawData(DohBase *b) {
DohObjInfo *objinfo = b->type;
return (objinfo->doh_data) ? (objinfo->doh_data)(b) : 0;
}
*/
/* -----------------------------------------------------------------------------
* DohCmp()
* ----------------------------------------------------------------------------- */
int
DohCmp(const DOH *obj1, const DOH *obj2) {
DohBase *b1, *b2;