summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2001-12-09 06:12:51 +0000
committerTim Potter <tpot@samba.org>2001-12-09 06:12:51 +0000
commit3c3fb798fd916a2f03d313c260720f9e0d59595a (patch)
tree36ac23d459357728acc8cff57c73fc3ee7507140
parentae02ee94e9c1ea9074829d57d02ab3d9b5b1b218 (diff)
downloadsamba-3c3fb798fd916a2f03d313c260720f9e0d59595a.tar.gz
samba-3c3fb798fd916a2f03d313c260720f9e0d59595a.tar.bz2
samba-3c3fb798fd916a2f03d313c260720f9e0d59595a.zip
wchar_t is a scalar.
(This used to be commit 79e56e719cec28373c117efa33e8924470ffcdcf)
-rw-r--r--source4/build/pidl/eparser.pm1
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;
}