diff src/variables.cc @ 11069:e40e19761d06

variables.cc: Octave_map to octave_map and octave_scalar_map conversion
author John W. Eaton <jwe@octave.org>
date Fri, 01 Oct 2010 04:30:47 -0400
parents 4ab04ea74b08
children 0c38b45ab49c
line wrap: on
line diff
--- a/src/variables.cc	Thu Sep 30 21:50:35 2010 +0200
+++ b/src/variables.cc	Fri Oct 01 04:30:47 2010 -0400
@@ -1218,7 +1218,7 @@
 
   bool empty (void) const { return lst.empty (); }
 
-  Octave_map
+  octave_map
   map_value (const std::string& caller_function_name, int nesting_level) const
   {
     size_t len = lst.size ();
@@ -1239,7 +1239,7 @@
       {
         const symbol_info& si = *p++;
 
-        Octave_map ni;
+        octave_scalar_map ni;
 
         ni.assign ("function", caller_function_name);
         ni.assign ("level", nesting_level);
@@ -1258,7 +1258,7 @@
         nesting_info(j) = ni;
       }
 
-    Octave_map info;
+    octave_map info;
 
     info.assign ("name", name_info);
     info.assign ("size", size_info);