Revert typemaps changes for member variables (and static members and globals for some languages ).
The typemaps were changed to use const ref typemaps (C++ only, not C). Inconsistency removed and the pointer typemaps used again. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@5890 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
9b4f0793de
commit
be3e61a82c
2 changed files with 12 additions and 4 deletions
|
|
@ -1,6 +1,15 @@
|
|||
Version 1.3.22 (in progress)
|
||||
==================================
|
||||
|
||||
04/25/2004: wsfulton
|
||||
Change entry 03/21/2004 revoked. The change introduced another
|
||||
inconsistency (reference typemaps beings used instead of
|
||||
pointer typemaps for member variables as well as static
|
||||
member variables and global variables for some languages,
|
||||
but only for C++ and not C). This would break user's current
|
||||
typemaps and introduce further inconsistencies. Alternative
|
||||
solution required and being discussed.
|
||||
|
||||
04/10/2004: mmatus (Marcelo Matus)
|
||||
|
||||
Added the -directors flag. This enables the director
|
||||
|
|
@ -134,6 +143,7 @@ Version 1.3.22 (in progress)
|
|||
enum Foo {};
|
||||
|
||||
03/21/2004: mmatus
|
||||
[Note: this change revoked on 04/25/2004]
|
||||
[Python] Makes the following 'var' cases more uniform:
|
||||
|
||||
std::string ga;
|
||||
|
|
|
|||
|
|
@ -1192,8 +1192,7 @@ Language::membervariableHandler(Node *n) {
|
|||
target = NewStringf("%s->%s", Swig_cparm_name(0,0),name);
|
||||
tm = Swig_typemap_lookup_new("memberin",n,target,0);
|
||||
}
|
||||
int VarRef = CPlusPlus ? CWRAP_VAR_REFERENCE : 0;
|
||||
Swig_MembersetToFunction(n,ClassType,Extend | SmartPointer| VarRef);
|
||||
Swig_MembersetToFunction(n,ClassType,Extend | SmartPointer);
|
||||
if (!Extend) {
|
||||
/* Check for a member in typemap here */
|
||||
|
||||
|
|
@ -1226,8 +1225,7 @@ Language::membervariableHandler(Node *n) {
|
|||
}
|
||||
/* Emit get function */
|
||||
{
|
||||
int VarRef = CPlusPlus ? CWRAP_VAR_REFERENCE : 0;
|
||||
Swig_MembergetToFunction(n,ClassType,Extend | SmartPointer| VarRef);
|
||||
Swig_MembergetToFunction(n,ClassType,Extend | SmartPointer);
|
||||
Setattr(n,"sym:name", mrename_get);
|
||||
functionWrapper(n);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue