tng 2003/02/25 08:07:38 Modified: c/src/xercesc/dom/impl DOMWriterImpl.cpp Log: [Bug 13493] Use const on static data in DOMWriterImpl.cpp. Revision Changes Path 1.30 +5 -2 xml-xerces/c/src/xercesc/dom/impl/DOMWriterImpl.cpp Index: DOMWriterImpl.cpp =================================================================== RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/impl/DOMWriterImpl.cpp,v retrieving revision 1.29 retrieving revision 1.30 diff -u -r1.29 -r1.30 --- DOMWriterImpl.cpp 28 Jan 2003 18:31:47 -0000 1.29 +++ DOMWriterImpl.cpp 25 Feb 2003 16:07:37 -0000 1.30 @@ -57,6 +57,9 @@ /* * $Id$ * $Log$ + * Revision 1.30 2003/02/25 16:07:37 tng + * [Bug 13493] Use const on static data in DOMWriterImpl.cpp. + * * Revision 1.29 2003/01/28 18:31:47 peiyongz * Bug#13694: Allow Xerces to write the BOM to XML files * @@ -203,7 +206,7 @@ // the first for "true", // the second for "false". // -static bool featuresSupported[] = { +static const bool featuresSupported[] = { false, true, // canonical-form true, true, // discard-default-content true, true, // entity
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]