Remove an unnecessary mutable.

llvm-svn: 78662
This commit is contained in:
Dan Gohman 2009-08-11 15:03:52 +00:00
parent 1f90bd277b
commit b5147e845f
1 changed files with 1 additions and 1 deletions

View File

@ -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.
/// @}