Fix regression introduced in swig-2.0.1 (r12157) leading to uncompilable code when using typedef and function pointers

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@12814 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2011-09-19 20:54:39 +00:00
commit fa8915ef5f
3 changed files with 22 additions and 5 deletions

View file

@ -823,7 +823,8 @@ String *SwigType_rcaststr(const SwigType *s, const_String_or_char_ptr name) {
Insert(result, 0, "(");
Append(result, ")");
}
isreference = 1;
if (!isfunction)
isreference = 1;
} else if (SwigType_isarray(element)) {
DOH *size;
if (firstarray && !isreference) {
@ -869,10 +870,8 @@ String *SwigType_rcaststr(const SwigType *s, const_String_or_char_ptr name) {
cast = NewStringf("(%s)", result);
}
if (name) {
if (!isfunction) {
if (isreference) {
Append(cast, "*");
}
if (isreference) {
Append(cast, "*");
}
Append(cast, name);
}