Remove a type
authorKim Nguyễn <kn@lri.fr>
Fri, 12 Oct 2012 14:38:14 +0000 (16:38 +0200)
committerKim Nguyễn <kn@lri.fr>
Fri, 12 Oct 2012 14:38:14 +0000 (16:38 +0200)
Fix ONCE AND FOR ALL compilation issues for g++ prior to ver. 4.5
(remove for( : ) iterations and some instances of auto).

xml-tree-inc.hpp
xml-tree.cpp

index 90717de..de88de0 100644 (file)
@@ -28,7 +28,7 @@ xml_tree::subtree_tags(xml_tree::node_t x, xml_tree::tag_t label) const
   xml_tree::node_t y = bp_find_close(this->par, x);
   if (y - x < 10) {
     uint32_t count = 0;
-    for (xml_tree::node i = x; i <= y; ++i)
+    for (xml_tree::node_t i = x; i <= y; ++i)
       count += (tag(i) == label);
     return count;
   } else {
index 158ec1b..0e597e3 100644 (file)
@@ -97,8 +97,12 @@ xml_tree::xml_tree(std::vector<int32_t> *tags_,
   this->tag_ids = tag_ids;
   tag_names = new std::vector<std::string>();
   tag_names->resize(tag_ids->size());
-  for(auto val : *(this->tag_ids))
-    (*this->tag_names)[val.second] = val.first;
+  std::unordered_map<std::string, tag_t>::iterator val;
+  //for(auto val : *(this->tag_ids))
+  //(*this->tag_names)[val.second] = val.first;
+  for(val = this->tag_ids->begin(); val != this->tag_ids->end(); ++val)
+    (*this->tag_names)[val->second] = val->first;
+
 
   uint32_t max_tag = tag_names->size() - 1;
   bit_vector *tmp_bitmap = new bit_vector(npar, 1, 0);
@@ -371,8 +375,7 @@ std::pair<int32_t, int32_t> xml_tree::text_id_range(xml_tree::node_t x) const
     i = 0;
   else
     i = text_positions->rank1(x-1);
- j = text_positions->rank1(y);
+  j = text_positions->rank1(y);
 //  fprintf(stderr, "Rank of node %i is %i, rank of closing %i is %i\n", x, i, y, j);
   if (i == j)
     return std::make_pair(xml_tree::NIL, xml_tree::NIL);
@@ -446,7 +449,8 @@ const char * xml_tree::get_tag_name_by_ref(xml_tree::tag_t tagid) const
 
 xml_tree::tag_t xml_tree::register_tag(char *s)
 {
-  auto found = tag_ids->find(std::string(s));
+  std::unordered_map<std::string, tag_t>::iterator found;
+  found = tag_ids->find(std::string(s));
   if (found == tag_ids->end())
     return xml_tree::NIL_TAG_ID;
   else
@@ -499,7 +503,7 @@ void xml_tree::print(xml_tree::node_t x, int fd, bool no_text)
   unsigned char * orig_text;
   unsigned char * current_text;
 
-  auto r = text_id_range(x);
+  std::pair<int32_t, int32_t> r = text_id_range(x);
   if (r.first == xml_tree::NIL)
     current_text = 0;
   else {