changeset 3555:0b00b69ab2fd

[project @ 2000-02-03 03:36:13 by jwe]
author jwe
date Thu, 03 Feb 2000 03:37:55 +0000
parents 747a87bc8594
children 0343ffea47ef
files src/Map.h src/mkgendoc
diffstat 2 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/Map.h
+++ b/src/Map.h
@@ -101,10 +101,10 @@
   // table entry.  Not terrible, but not wonderful either.
 
   int goodCHptr (void)
-    { return (((X_CAST (unsigned, t)) & 1) == 0); }
+    { return (((X_CAST (unsigned long, this)) & 1) == 0); }
 
   unsigned int CHptr_to_index (void)
-    { return (X_CAST (unsigned, t)) >> 1; }
+    { return (X_CAST (unsigned long, this)) >> 1; }
 };
 
 #ifndef DEFAULT_INITIAL_CAPACITY
--- a/src/mkgendoc
+++ b/src/mkgendoc
@@ -38,7 +38,7 @@
   print_doc_string (#name, doc);
 
 static void
-print_doc_string (const string& name, const std::string& doc)
+print_doc_string (const std::string& name, const std::string& doc)
 {
   std::cout << "";