]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/list.cpp
Make this header SWIG-safe
[wxWidgets.git] / src / common / list.cpp
index dcfb1b3358fcad32a5ea71145fb3ea1968a57bc8..4bdefdba206de4c34ba73b947f251673b6eb7b47 100644 (file)
@@ -701,9 +701,13 @@ bool wxStringList::Member(const wxChar *s) const
 }
 
 #ifdef __WXWINCE__
-extern "C" int __cdecl
+extern "C"
+{
+static int __cdecl
 #else
-extern "C" int LINKAGEMODE
+extern "C"
+{
+static int LINKAGEMODE
 #endif
 
 wx_comparestrings(const void *arg1, const void *arg2)
@@ -714,6 +718,8 @@ wx_comparestrings(const void *arg1, const void *arg2)
   return wxStrcmp (*s1, *s2);
 }
 
+}   // end of extern "C" (required because of GCC Bug c++/33078
+
 // Sort a list of strings - deallocates old nodes, allocates new
 void wxStringList::Sort()
 {