Fixed SF #1976978, apply the macros for primitive types to std::wstring

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10508 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Haoyu Bai 2008-05-30 13:53:33 +00:00
commit 2dcb84a4c3
2 changed files with 5 additions and 0 deletions

View file

@ -1,6 +1,10 @@
Version 1.3.36 (in progress)
=============================
05/30/2008: bhy
Added std::wstring into Lib/typemaps/primtypes.swg, since it is also a primitive
type in SWIG - fixed SF #1976978.
05/29/2008: wsfulton
[Java, C#] Fix variable wrappers when using -noproxy.

View file

@ -283,6 +283,7 @@ _apply_macro(Macro, ptrdiff_t , Arg2);
_apply_macro(Macro, std::size_t, Arg2);
_apply_macro(Macro, std::ptrdiff_t, Arg2);
_apply_macro(Macro, std::string, Arg2);
_apply_macro(Macro, std::wstring, Arg2);
_apply_macro(Macro, std::complex<float>, Arg2);
_apply_macro(Macro, std::complex<double>, Arg2);
%enddef