Bugfix for JSC %typemap(out) std::string&.
This commit is contained in:
parent
b7f827e42c
commit
bf416876dd
1 changed files with 1 additions and 1 deletions
|
|
@ -63,7 +63,7 @@ namespace std {
|
|||
|
||||
%typemap(out) const string &
|
||||
%{
|
||||
$result = SWIGJSC_stringToValue(context, $1);
|
||||
$result = SWIGJSC_stringToValue(context, *$1);
|
||||
%}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue