Fix #1632625 - Compilation errors on Visual C++ 6 when using directors

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10192 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2007-12-12 20:42:14 +00:00
commit 07bdd8bd18
2 changed files with 7 additions and 0 deletions

View file

@ -1,6 +1,9 @@
Version 1.3.34 (in progress)
============================
12/12/2007: wsfulton
[Java] Fix #1632625 - Compilation errors on Visual C++ 6 when using directors.
12/12/2007: wsfulton
[Perl] Fix #1798728 - numbers can be passed to functions taking char *.

View file

@ -107,6 +107,10 @@ namespace Swig {
JavaVM *swig_jvm_;
protected:
#if defined (_MSC_VER) && (_MSC_VER<1300)
class JNIEnvWrapper;
friend class JNIEnvWrapper;
#endif
/* Utility class for managing the JNI environment */
class JNIEnvWrapper {
const Director *director_;