From 4913574cf4052ab299ea05b76e73341d014a32cf Mon Sep 17 00:00:00 2001 From: csoutheren Date: Wed, 21 Apr 2004 00:32:02 +0000 Subject: [PATCH] Fixed problem with XER and the new RTTI system Thanks to Federico Pinna and Reitek S.p.A. --- tools/asnparser/main.cxx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tools/asnparser/main.cxx b/tools/asnparser/main.cxx index 7ec24d76..b119abc8 100644 --- a/tools/asnparser/main.cxx +++ b/tools/asnparser/main.cxx @@ -30,6 +30,10 @@ * Contributor(s): ______________________________________. * * $Log$ + * Revision 1.50 2004/04/21 00:32:02 csoutheren + * Fixed problem with XER and the new RTTI system + * Thanks to Federico Pinna and Reitek S.p.A. + * * Revision 1.49 2004/04/13 11:33:55 csoutheren * Fixed XER output, thanks to Federico Pinna * @@ -2276,7 +2280,7 @@ void SequenceType::GenerateCplusplus(ostream & hdr, ostream & cxx) if (xml_output) { - cxx << " if (PIsDescendantStr(&strm, PXER_Stream))\n" + cxx << " if (PIsDescendant(&strm, PXER_Stream))\n" " return TRUE;\n\n"; } @@ -2306,7 +2310,7 @@ void SequenceType::GenerateCplusplus(ostream & hdr, ostream & cxx) if (xml_output) { - cxx << " if (PIsDescendant(&strm, \"PXER_Stream\"))\n" + cxx << " if (PIsDescendant(&strm, PXER_Stream))\n" " return;\n\n"; } -- 2.11.4.GIT