*** empty log message ***

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@4365 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Dave Beazley 2003-02-20 19:40:10 +00:00
commit ef17d4a002
2 changed files with 18 additions and 1 deletions

View file

@ -1,5 +1,22 @@
Version 1.3.18 (In progress)
============================
02/20/2003: beazley
Fixed problem with abstract classes and typedef. For example:
class Foo {
public:
virtual void foo(int x) = 0;
};
typedef int Integer;
class Bar : public Foo {
public:
virtual void foo(Integer x);
};
SWIG was getting confused about the latter method---making Bar
abstract. Reported by Marcelo Matus.
02/19/2003: cheetah (William Fulton)
[Java] %javaconst(flag) can also be used on enums as well as constants.
This feature enables true Java compiler constants so that they can be

View file

@ -44,7 +44,6 @@ DYNAMIC_LIB_PATH = $(RUNTIMEDIR):.
CPP_TEST_BROKEN += \
cast_operator \
arrayref \
abstract_typedef \
namespace_nested \
template_default_arg \
template_extend_overload \
@ -63,6 +62,7 @@ CPP_TEST_CASES += \
abstract_inherit \
abstract_inherit_ok \
abstract_signature \
abstract_typedef \
add_link \
anonymous_arg \
argout \