OSDN Git Service

Remove an unnecessary mutable.
authorDan Gohman <gohman@apple.com>
Tue, 11 Aug 2009 15:03:52 +0000 (15:03 +0000)
committerDan Gohman <gohman@apple.com>
Tue, 11 Aug 2009 15:03:52 +0000 (15:03 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78662 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/System/Path.h

index 8b603f5..a66f8dc 100644 (file)
@@ -587,7 +587,7 @@ namespace sys {
     /// @name Data
     /// @{
     protected:
-      mutable std::string path;   ///< Storage for the path name.
+      std::string path;   ///< Storage for the path name.
 
 
     /// @}