Path::isRootDirectory is unimplemented on Unix and not used,
authorChris Lattner <sabre@nondot.org>
Mon, 12 Jul 2010 04:39:07 +0000 (04:39 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 12 Jul 2010 04:39:07 +0000 (04:39 +0000)
remove it, fixing PR6909.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108125 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/System/Path.h
lib/System/Win32/Path.inc

index d4af478c6aa0b13d99bc83e6432bdf981c83fb5c..0461769f971087d1407f27771f99fee1bdf68660 100644 (file)
@@ -292,14 +292,6 @@ namespace sys {
     /// @name Disk Accessors
     /// @{
     public:
-      /// This function determines if the path name in this object references
-      /// the root (top level directory) of the file system. The details of what
-      /// is considered the "root" may vary from system to system so this method
-      /// will do the necessary checking.
-      /// @returns true iff the path name references the root directory.
-      /// @brief Determines if the path references the root directory.
-      bool isRootDirectory() const;
-
       /// This function determines if the path name is absolute, as opposed to
       /// relative.
       /// @brief Determine if the path is absolute.
index 5a0052f3cb2176adc234a904595e4bf0c96cd81e..379527d4ebf24580e3b7b0ae9e649a86afc34b2a 100644 (file)
@@ -281,12 +281,6 @@ Path Path::GetMainExecutable(const char *argv0, void *MainAddr) {
 // FIXME: the above set of functions don't map to Windows very well.
 
 
-bool
-Path::isRootDirectory() const {
-  size_t len = path.size();
-  return len > 0 && path[len-1] == '/';
-}
-
 StringRef Path::getDirname() const {
   return getDirnameCharSep(path, "/");
 }