Re: [xml] xmlChar double ptr
- From: Tim Van Holder <tim vanholder anubex com>
- To: j s bach o2online de
- Cc: xml gnome org
- Subject: Re: [xml] xmlChar double ptr
- Date: Tue, 06 May 2008 15:38:26 +0200
On 2008-05-06 14:58, j s bach o2online de wrote:
Hei,
how do i define a double ptr xmlChar? is it possible at all?
static xmlChar* mapper[] = {"bla", "blubber"} ;
doesn't work. g++ says
XMLStructure.h:75: error: invalid conversion from âconst char*â to âxmlChar*â
XMLStructure.h also includes:
<libxml/parser.h>
<libxml/tree.h>
Sounds like a constness error; try
static const xmlChar* mapper[] = {"bla", "blubber"} ;
instead.
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]