--- parser3/src/classes/hash.C 2009/05/05 10:06:57 1.91 +++ parser3/src/classes/hash.C 2009/05/13 07:36:05 1.92 @@ -5,7 +5,7 @@ Author: Alexandr Petrosian (http://paf.design.ru) */ -static const char * const IDENT_HASH_C="$Date: 2009/05/05 10:06:57 $"; +static const char * const IDENT_HASH_C="$Date: 2009/05/13 07:36:05 $"; #include "classes.h" #include "pa_vmethod_frame.h" @@ -74,9 +74,9 @@ public: empty(0) { } - bool add_column(SQL_Error& error, const char* str, size_t length) { + bool add_column(SQL_Error& error, const char* str, size_t) { try { - columns+=new String(str, length, true); + columns+=new String(str, true); return false; } catch(...) { error=SQL_Error("exception occured in Hash_sql_event_handlers::add_column");