From: Dan Gohman Date: Tue, 11 Aug 2009 15:03:52 +0000 (+0000) Subject: Remove an unnecessary mutable. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=3c8178e625a70d92a00d77c6e5d26f25ecb89c18;p=oota-llvm.git Remove an unnecessary mutable. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78662 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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. /// @}