Bugfix for JSC %typemap(out) std::string&.

This commit is contained in:
Oliver Buchtala 2013-09-16 01:33:19 +02:00
commit bf416876dd

View file

@ -63,7 +63,7 @@ namespace std {
%typemap(out) const string &
%{
$result = SWIGJSC_stringToValue(context, $1);
$result = SWIGJSC_stringToValue(context, *$1);
%}
}