From 3c8178e625a70d92a00d77c6e5d26f25ecb89c18 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Tue, 11 Aug 2009 15:03:52 +0000 Subject: [PATCH] Remove an unnecessary mutable. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78662 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/System/Path.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/System/Path.h b/include/llvm/System/Path.h index 8b603f5ad42..a66f8dcfd86 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. /// @} -- 2.34.1