removed some debugging and added missing class name definition.
authorChris Koeritz <fred@gruntose.com>
Thu, 9 Jul 2015 19:37:31 +0000 (15:37 -0400)
committerChris Koeritz <fred@gruntose.com>
Thu, 9 Jul 2015 19:37:31 +0000 (15:37 -0400)
nucleus/library/filesystem/filename.cpp
nucleus/library/filesystem/filename.h

index 81ca6f02f69d7abd04724e4877110f3e05ad4bdd..664a9970c2e0caf91b1102e63007cc4845b09ef0 100644 (file)
@@ -197,7 +197,7 @@ void filename::canonicalize()
   if ( (length() > CYGDRIVE_PATH.length() + 1) && begins(CYGDRIVE_PATH) ) {
     zap(0, CYGDRIVE_PATH.length() - 1);  // whack the cygdrive portion plus two slashes.
     insert(1, ":");  // add a colon after the imputed drive letter.
-LOG(astring("turned cygdrive string into: ") + *this);
+//LOG(astring("turned cygdrive string into: ") + *this);
   }
   // now we convert msys...
   if ( (length() >= 2) && (get(0) == DEFAULT_SEPARATOR)
@@ -216,7 +216,7 @@ LOG(astring("turned cygdrive string into: ") + *this);
       // then only on the near defunct windows platform.
       zap(0, 0);  // take off initial slash.
       insert(1, ":");  // add the obligatory colon.
-LOG(astring("turned msys string into: ") + *this);
+//LOG(astring("turned msys string into: ") + *this);
     }
   } 
 #endif
index f609f9016b0b14f85e8d5625d1da5d2b590d551d..c1710c13e9328f66623abb911dfac745858468e6 100644 (file)
@@ -56,6 +56,8 @@ public:
     /*!< the "name_of_file" can itself be a directory. */
   filename(const filename &to_copy);  //!< copy constructor.
 
+  DEFINE_CLASS_NAME("filename");
+
   virtual ~filename();
 
   bool good() const;