Diff for /parser3/src/main/pa_table.C between versions 1.65 and 1.66

version 1.65, 2015/07/28 14:42:44 version 1.66, 2015/07/28 21:23:39
Line 76  void Table::put_item(size_t column, cons Line 76  void Table::put_item(size_t column, cons
         row->put(column, value);          row->put(column, value);
 }  }
   
   void Table::remove_current(){
           if(!valid(fcurrent)) {
                   throw Exception(PARSER_RUNTIME, 0, "invalid current row");
           }
           remove(fcurrent);
           if(fcurrent==count() && count()>0){
               fcurrent--;
           }
   }
   
 #ifndef DOXYGEN  #ifndef DOXYGEN
 struct Locate_int_string_info {  struct Locate_int_string_info {
         int column;          int column;

Removed from v.1.65  
changed lines
  Added in v.1.66


E-mail: