# HG changeset patch # User jwe # Date 845147407 0 # Node ID 3db75e5cdf7c2dff195cd748d2d3f7dfc72d776d # Parent 4be11abb8d8c6aba08e04c672bb89b5242c8e6c7 [project @ 1996-10-12 19:07:29 by jwe] diff --git a/src/pt-mvr-base.cc b/src/pt-mvr-base.cc --- a/src/pt-mvr-base.cc +++ b/src/pt-mvr-base.cc @@ -29,7 +29,7 @@ #endif #include "error.h" -#include "pt-const.h" +#include "ov.h" #include "pt-mvr-base.h" // A base class for objects that can be return multiple values diff --git a/src/pt-mvr.cc b/src/pt-mvr.cc --- a/src/pt-mvr.cc +++ b/src/pt-mvr.cc @@ -312,7 +312,7 @@ // works, but maybe we should have the option of // skipping the assignment instead. - octave_value *tmp = 0; + tree_constant *tmp = 0; if (results(i).is_undefined ()) { error ("element number %d undefined in return list", i+1); @@ -320,7 +320,7 @@ break; } else - tmp = new octave_value (results(i)); + tmp = new tree_constant (results(i)); tree_simple_assignment_expression tmp_expr (lhs_expr, tmp, 1, 0, ma_line, ma_column); diff --git a/src/pt-mvr.h b/src/pt-mvr.h --- a/src/pt-mvr.h +++ b/src/pt-mvr.h @@ -41,7 +41,7 @@ #include -#include "pt-const.h" +#include "ov.h" #include "pt-mvr-base.h" #include "oct-obj.h"