diff libinterp/interpfcn/symtab.cc @ 16071:94e95309710c

Whitespace cleanup
author Jordi Gutiérrez Hermoso <jordigh@octave.org>
date Wed, 20 Feb 2013 11:36:13 -0500
parents e603ce23f20c
children 0259254a3ccc 302157614308
line wrap: on
line diff
--- a/libinterp/interpfcn/symtab.cc	Tue Jan 29 17:55:53 2013 +0100
+++ b/libinterp/interpfcn/symtab.cc	Wed Feb 20 11:36:13 2013 -0500
@@ -1016,8 +1016,8 @@
   if (is_superiorto (inf_class, sup_class))
     return false;
 
-  // If sup_class doesn't have an entry in the precedence table, 
-  // this will automatically create it, and associate to it a 
+  // If sup_class doesn't have an entry in the precedence table,
+  // this will automatically create it, and associate to it a
   // singleton set {inf_class} of inferior classes.
   class_precedence_table[sup_class].insert (inf_class);
 
@@ -1040,7 +1040,7 @@
 bool
 symbol_table::is_superiorto (const std::string& a, const std::string& b)
 {
-  class_precedence_table_const_iterator p = class_precedence_table.find (a);  
+  class_precedence_table_const_iterator p = class_precedence_table.find (a);
   // If a has no entry in the precedence table, return false
   if (p == class_precedence_table.end ())
     return false;
@@ -1466,7 +1466,7 @@
             {
               if (ours.is_global () || ours.is_persistent ())
                 ::error ("global and persistent may only be used in the topmost level in which a nested variable is used");
-                
+
               if (! ours.is_formal ())
                 {
                   ours.invalidate ();