--- parser3/src/main/pa_table.C 2003/07/24 11:31:24 1.56 +++ parser3/src/main/pa_table.C 2004/02/11 15:33:16 1.60 @@ -1,11 +1,11 @@ /** @file Parser: table class. - Copyright (c) 2001-2003 ArtLebedev Group (http://www.artlebedev.com) + Copyright (c) 2001-2004 ArtLebedev Group (http://www.artlebedev.com) Author: Alexandr Petrosian (http://paf.design.ru) */ -static const char* IDENT_TABLE_C="$Date: 2003/07/24 11:31:24 $"; +static const char * const IDENT_TABLE_C="$Date: 2004/02/11 15:33:16 $"; #include "pa_table.h" @@ -19,7 +19,6 @@ Table::Table(columns_type acolumns, size name2number(new name2number_hash_class) { if(fcolumns) { - size_t fcolumns_count=fcolumns->count(); size_t number=1; for(Array_iterator i(*fcolumns); i.has_next(); ) { const String& name=*i.next(); @@ -53,7 +52,7 @@ int Table::column_name2index(const Strin const String* Table::item(size_t column) { if(valid(fcurrent)) { element_type row=get(fcurrent); - if(column>=0 && columncount()) // proper index? + if(columncount()) // proper index? return row->get(column); } return 0; // it's OK we don't have row|column, just return nothing @@ -65,11 +64,9 @@ struct Locate_int_string_info { const String* value; }; #endif -bool locate_int_string(Table& self, void* ainfo) { - Locate_int_string_info& info=*static_cast(ainfo); - - const String *item_value=self.item(info.column); - return item_value && *item_value==*info.value; +bool locate_int_string(Table& self, Locate_int_string_info* info) { + const String *item_value=self.item(info->column); + return item_value && *item_value==*info->value; } bool Table::locate(int column, const String& value,