--- parser3/src/main/compile_tools.C 2001/03/08 16:54:27 1.20 +++ parser3/src/main/compile_tools.C 2001/03/08 17:14:53 1.21 @@ -1,5 +1,5 @@ /* - $Id: compile_tools.C,v 1.20 2001/03/08 16:54:27 paf Exp $ + $Id: compile_tools.C,v 1.21 2001/03/08 17:14:53 paf Exp $ */ #include "compile_tools.h" @@ -50,7 +50,7 @@ String *SLA2S(Array *literal_string_arra void change_string_literal_to_double_literal(Array *literal_string_array) { VString *vstring=static_cast(literal_string_array->get(1)); Pool& pool=vstring->pool(); - VDouble *vdouble=new(pool) VDouble(*new(pool) Double(pool, vstring->get_double())); + VDouble *vdouble=new(pool) VDouble(pool, vstring->get_double()); literal_string_array->put(1, vdouble); }