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 | 2d0a4a66665988fbeb5034d988f29316deac6075 (patch) | |
tree | 04eada393167cf9e46f7f18d1361ed6af530f5a2 /include/llvm | |
parent | 0af6bb2987097a91de71dacce6f792ee493bb756 (diff) | |
download | external_llvm-2d0a4a66665988fbeb5034d988f29316deac6075.zip external_llvm-2d0a4a66665988fbeb5034d988f29316deac6075.tar.gz external_llvm-2d0a4a66665988fbeb5034d988f29316deac6075.tar.bz2 |
Remove an unnecessary mutable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78662 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-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 8b603f5..a66f8dc 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. /// @} |