[llvm-commits] CVS: llvm/include/llvm/System/Path.h

Chris Lattner sabre at nondot.org
Sun Apr 29 10:44:29 PDT 2007



Changes in directory llvm/include/llvm/System:

Path.h updated: 1.55 -> 1.56
---
Log message:

Jeff's fix was fine


---
Diffs of the changes:  (+2 -6)

 Path.h |    8 ++------
 1 files changed, 2 insertions(+), 6 deletions(-)


Index: llvm/include/llvm/System/Path.h
diff -u llvm/include/llvm/System/Path.h:1.55 llvm/include/llvm/System/Path.h:1.56
--- llvm/include/llvm/System/Path.h:1.55	Sun Apr 29 12:40:50 2007
+++ llvm/include/llvm/System/Path.h	Sun Apr 29 12:44:10 2007
@@ -177,6 +177,8 @@
       /// This constructor will accept a character range as a path.  No checking
       /// is done on this path to determine if it is valid.  To determine
       /// validity of the path, use the isValid method. 
+      /// @param p The path to assign.
+      /// @brief Construct a Path from a string.
       explicit Path(const char *StrStart, unsigned StrLen)
         : path(StrStart, StrStart+StrLen) {}
       
@@ -549,12 +551,6 @@
       PathWithStatus(const Path &other) 
         : Path(other), status(), fsIsValid(false) {}
 
-      /// This constructor will accept a character range as a path.  No checking
-      /// is done on this path to determine if it is valid.  To determine
-      /// validity of the path, use the isValid method. 
-      PathWithStatus(const char *StrStart, unsigned StrLen)
-        : Path(StrStart, StrLen), fsIsValid(false) {}
-    
       /// This constructor will accept a std::string as a path. No checking is
       /// done on this path to determine if it is valid. To determine validity
       /// of the path, use the isValid method. 






More information about the llvm-commits mailing list