Changes in directory llvm/include/llvm/System:

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

remove extraneous type qualifiers


---
Diffs of the changes:  (+1 -1)

 Path.h |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/include/llvm/System/Path.h
diff -u llvm/include/llvm/System/Path.h:1.56 
llvm/include/llvm/System/Path.h:1.57
--- llvm/include/llvm/System/Path.h:1.56        Sun Apr 29 12:44:10 2007
+++ llvm/include/llvm/System/Path.h     Thu May  3 13:14:56 2007
@@ -264,7 +264,7 @@
       /// Obtain a 'C' string for the path name.
       /// @returns a 'C' string containing the path name.
       /// @brief Returns the path as a C string.
-      const char *const c_str() const { return path.c_str(); }
+      const char *c_str() const { return path.c_str(); }
 
     /// @}
     /// @name Disk Accessors



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to