Change the get_text() method to return a const char*
authorKim Nguyễn <kn@lri.fr>
Wed, 17 Oct 2012 11:09:41 +0000 (13:09 +0200)
committerKim Nguyễn <kn@lri.fr>
Wed, 17 Oct 2012 11:14:52 +0000 (13:14 +0200)
xml-tree.cpp

index b33383e..d6b54e8 100644 (file)
@@ -399,9 +399,9 @@ int32_t xml_tree::text_id(xml_tree::node_t x) const
   return (int32_t) text_positions->rank1(x) - 1;
 }
 
-unsigned char* xml_tree::get_text(int32_t id) const
+const char* xml_tree::get_text(int32_t id) const
 {
-  unsigned char * s = text_collection->GetText(id);
+  const char * s = static_cast<const char*>(text_collection->GetText(id));
   return s + (s[0] == 1);
 }