diff options
author | Dan Gohman <gohman@apple.com> | 2009-08-11 15:03:52 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-08-11 15:03:52 +0000 |
commit | 3c8178e625a70d92a00d77c6e5d26f25ecb89c18 (patch) | |
tree | 04eada393167cf9e46f7f18d1361ed6af530f5a2 | |
parent | 7e83697c8e2d9862547ad0e6fdd023cca0c4fc5f (diff) |
Remove an unnecessary mutable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78662 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/System/Path.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/System/Path.h b/include/llvm/System/Path.h index 8b603f5ad4..a66f8dcfd8 100644 --- a/include/llvm/System/Path.h +++ b/include/llvm/System/Path.h @@ -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. /// @} |