SwigValueWrapper::operator& should always have been const
This commit is contained in:
parent
bf36bf7d8a
commit
7cab5accef
1 changed files with 1 additions and 1 deletions
|
|
@ -683,7 +683,7 @@ public:
|
|||
#else
|
||||
operator T&() const { return *pointer.ptr; }
|
||||
#endif
|
||||
T *operator&() { return pointer.ptr; }
|
||||
T *operator&() const { return pointer.ptr; }
|
||||
};%}
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue