Update of /cvsroot/pywin32/pywin32/com/win32com/src
In directory sc8-pr-cvs1:/tmp/cvs-serv17201
Modified Files:
PyIUnknown.cpp
Log Message:
Use gcc exception semantics for MAINWIN too (maybe this should be checking
gcc?)
Index: PyIUnknown.cpp
===================================================================
RCS file: /cvsroot/pywin32/pywin32/com/win32com/src/PyIUnknown.cpp,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** PyIUnknown.cpp 23 Oct 2003 07:29:40 -0000 1.7
--- PyIUnknown.cpp 31 Oct 2003 06:53:36 -0000 1.8
***************
*** 145,149 ****
ob->m_obj = NULL;
}
! #ifdef __MINGW32__
catch(...)
#else
--- 145,149 ----
ob->m_obj = NULL;
}
! #if defined(__MINGW32__) || defined(MAINWIN)
catch(...)
#else
|