summaryrefslogtreecommitdiff
path: root/source4/pidl/lib/Parse/Pidl/NDR.pm
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2007-08-31 00:03:54 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 15:03:14 -0500
commit7acc0e77a6f6d74d1ccfcf04424a63b224b292a5 (patch)
treee1c8428f645a659ea14105eb4159ad4e1ddac47d /source4/pidl/lib/Parse/Pidl/NDR.pm
parent82037a75eae9deaf6ec80b5ecc3bb89aab6e6dd8 (diff)
downloadsamba-7acc0e77a6f6d74d1ccfcf04424a63b224b292a5.tar.gz
samba-7acc0e77a6f6d74d1ccfcf04424a63b224b292a5.tar.bz2
samba-7acc0e77a6f6d74d1ccfcf04424a63b224b292a5.zip
r24815: Support cpp_quote().
(This used to be commit 30c1de30bb4ded16e79316c0ab43809e0e19f75d)
Diffstat (limited to 'source4/pidl/lib/Parse/Pidl/NDR.pm')
-rw-r--r--source4/pidl/lib/Parse/Pidl/NDR.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/source4/pidl/lib/Parse/Pidl/NDR.pm b/source4/pidl/lib/Parse/Pidl/NDR.pm
index 31b70e5bdc..11fdbb2390 100644
--- a/source4/pidl/lib/Parse/Pidl/NDR.pm
+++ b/source4/pidl/lib/Parse/Pidl/NDR.pm
@@ -715,6 +715,7 @@ sub Parse($)
my @ndr = ();
foreach (@{$idl}) {
+ ($_->{TYPE} eq "CPP_QUOTE") && push(@ndr, $_);
($_->{TYPE} eq "INTERFACE") && push(@ndr, ParseInterface($_));
($_->{TYPE} eq "IMPORT") && push(@ndr, $_);
}