1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-18 17:57:55 +03:00

wchar_t is a scalar.

This commit is contained in:
Tim Potter -
parent 83ada5447b
commit 79e56e719c

View File

@ -20,6 +20,7 @@ sub is_scalar_type($)
return 1, if ($type eq "char");
return 1, if ($type eq "uint16");
return 1, if ($type eq "hyper");
return 1, if ($type eq "wchar_t");
return 0;
}