diff src/symtab.cc @ 3944:818f5aec1db5

[project @ 2002-05-18 00:05:08 by jwe]
author jwe
date Sat, 18 May 2002 00:05:08 +0000
parents f9ea3dcf58ee
children 27e461aed956
line wrap: on
line diff
--- a/src/symtab.cc	Thu May 16 22:31:36 2002 +0000
+++ b/src/symtab.cc	Sat May 18 00:05:08 2002 +0000
@@ -178,7 +178,7 @@
 }
 
 void
-SYMBOL_DEF::print_info (ostream& os, const std::string& prefix) const
+SYMBOL_DEF::print_info (std::ostream& os, const std::string& prefix) const
 {
   os << prefix << "symbol_def::count: " << count << "\n";
 
@@ -476,7 +476,7 @@
 }
 
 void
-symbol_record::print_info (ostream& os, const std::string& prefix) const
+symbol_record::print_info (std::ostream& os, const std::string& prefix) const
 {
   if (definition)
     definition->print_info (os, prefix);
@@ -874,7 +874,7 @@
 }
 
 void
-symbol_table::print_info (ostream& os) const
+symbol_table::print_info (std::ostream& os) const
 {
   int count = 0;
   int empty_chains = 0;