*** empty log message ***
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4552 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
64354c5b3b
commit
29728e97d4
1 changed files with 19 additions and 0 deletions
|
|
@ -1,5 +1,24 @@
|
||||||
Version 1.3.18 (In progress)
|
Version 1.3.18 (In progress)
|
||||||
============================
|
============================
|
||||||
|
03/15/2003: beazley
|
||||||
|
Fixed a problem with const smart-pointer wrapping. For example:
|
||||||
|
|
||||||
|
class Foo {
|
||||||
|
public:
|
||||||
|
int x;
|
||||||
|
void bar() const;
|
||||||
|
void spam();
|
||||||
|
};
|
||||||
|
|
||||||
|
class Blah {
|
||||||
|
...
|
||||||
|
const Foo *operator->();
|
||||||
|
...
|
||||||
|
};
|
||||||
|
|
||||||
|
In this case, only "x" and "bar" are visible from Blah (since application
|
||||||
|
of spam violates constness). Moreover, access to "x" is read-only.
|
||||||
|
|
||||||
03/15/2003: mrose (Mark Rose)
|
03/15/2003: mrose (Mark Rose)
|
||||||
Cleaned up two signed versus unsigned comparisons in python/std_vector.i.
|
Cleaned up two signed versus unsigned comparisons in python/std_vector.i.
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue