immutable feature not needed anymore. private assign is recognized by swig now
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6445 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
ad8093acbe
commit
49fe98ee46
2 changed files with 6 additions and 12 deletions
|
|
@ -146,6 +146,12 @@ namespace std {
|
|||
protected:
|
||||
ios_base();
|
||||
|
||||
//50. Copy constructor and assignment operator of ios_base
|
||||
private:
|
||||
ios_base(const ios_base&);
|
||||
|
||||
ios_base&
|
||||
operator=(const ios_base&);
|
||||
};
|
||||
|
||||
template<typename _CharT, typename _Traits >
|
||||
|
|
|
|||
|
|
@ -6,18 +6,6 @@
|
|||
#include <iostream>
|
||||
%}
|
||||
|
||||
namespace std
|
||||
{
|
||||
%feature("immutable") cin;
|
||||
%feature("immutable") cout;
|
||||
%feature("immutable") cerr;
|
||||
%feature("immutable") clog;
|
||||
|
||||
%feature("immutable") wcin;
|
||||
%feature("immutable") wcout;
|
||||
%feature("immutable") wcerr;
|
||||
%feature("immutable") wclog;
|
||||
}
|
||||
|
||||
namespace std
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue