--- parser3/src/classes/hash.C 2001/05/21 17:12:58 1.4 +++ parser3/src/classes/hash.C 2001/06/28 07:44:17 1.8 @@ -5,13 +5,14 @@ Author: Alexander Petrosyan (http://design.ru/paf) - $Id: hash.C,v 1.4 2001/05/21 17:12:58 parser Exp $ + $Id: hash.C,v 1.8 2001/06/28 07:44:17 parser Exp $ */ +static const char *RCSId="$Id: hash.C,v 1.8 2001/06/28 07:44:17 parser Exp $"; #include "classes.h" #include "pa_request.h" #include "pa_vhash.h" -#include "pa_vnothing.h" +#include "pa_vvoid.h" #include "pa_sql_connection.h" // defines @@ -40,7 +41,7 @@ static void _default(Request& r, const S vhash.set_default(params->get(0)); // info: may be code.. else { Value *default_value=vhash.get_default(); - r.write_assign_lang(default_value?*default_value:*new(pool) VUnknown(pool)); + r.write_assign_lang(default_value?*default_value:*new(pool) VVoid(pool)); } }