From 618fc2fc8e07cf9c168971f34c9945552b0b0ced 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. llvm-svn: 78662 --- 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. /// @}