diff options
author | Tim Potter <tpot@samba.org> | 2001-12-09 06:12:51 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2001-12-09 06:12:51 +0000 |
commit | 3c3fb798fd916a2f03d313c260720f9e0d59595a (patch) | |
tree | 36ac23d459357728acc8cff57c73fc3ee7507140 /source4/build | |
parent | ae02ee94e9c1ea9074829d57d02ab3d9b5b1b218 (diff) | |
download | samba-3c3fb798fd916a2f03d313c260720f9e0d59595a.tar.gz samba-3c3fb798fd916a2f03d313c260720f9e0d59595a.tar.bz2 samba-3c3fb798fd916a2f03d313c260720f9e0d59595a.zip |
wchar_t is a scalar.
(This used to be commit 79e56e719cec28373c117efa33e8924470ffcdcf)
Diffstat (limited to 'source4/build')
-rw-r--r-- | source4/build/pidl/eparser.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source4/build/pidl/eparser.pm b/source4/build/pidl/eparser.pm index ba49b39f18..7bcef92da6 100644 --- a/source4/build/pidl/eparser.pm +++ b/source4/build/pidl/eparser.pm @@ -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; } |