Removed unusual use of "const" to avoid errors from a Sun compiler.

This commit is contained in:
Fred L. Drake, Jr. 2001-07-25 17:22:48 +00:00
parent 718bd9e746
commit a381bda8c4

View File

@ -65,7 +65,7 @@ typedef struct XML_cp XML_Content;
struct XML_cp {
enum XML_Content_Type type;
enum XML_Content_Quant quant;
const XML_Char * name;
XML_Char * name;
unsigned int numchildren;
XML_Content * children;
};