[llvm-commits] [llvm] r78662 - /llvm/trunk/include/llvm/System/Path.h

Dan Gohman gohman at apple.com
Tue Aug 11 08:03:53 PDT 2009


Author: djg
Date: Tue Aug 11 10:03:52 2009
New Revision: 78662

URL: http://llvm.org/viewvc/llvm-project?rev=78662&view=rev
Log:
Remove an unnecessary mutable.

Modified:
    llvm/trunk/include/llvm/System/Path.h

Modified: llvm/trunk/include/llvm/System/Path.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/System/Path.h?rev=78662&r1=78661&r2=78662&view=diff

==============================================================================
--- llvm/trunk/include/llvm/System/Path.h (original)
+++ llvm/trunk/include/llvm/System/Path.h Tue Aug 11 10:03:52 2009
@@ -587,7 +587,7 @@
     /// @name Data
     /// @{
     protected:
-      mutable std::string path;   ///< Storage for the path name.
+      std::string path;   ///< Storage for the path name.
 
 
     /// @}





More information about the llvm-commits mailing list