From 7570a9ceae49cea41bf288bb2b96d0a6166a8254 Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Tue, 11 Aug 2009 16:41:22 +0000 Subject: [PATCH] Revert 78662 to fix broken windows build. Add a comment which explains the problem. llvm-svn: 78679 --- llvm/include/llvm/System/Path.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/llvm/include/llvm/System/Path.h b/llvm/include/llvm/System/Path.h index a66f8dcfd861..54c1066b5202 100644 --- a/llvm/include/llvm/System/Path.h +++ b/llvm/include/llvm/System/Path.h @@ -587,7 +587,8 @@ namespace sys { /// @name Data /// @{ protected: - std::string path; ///< Storage for the path name. + // Our win32 implementation relies on this string being mutable. + mutable std::string path; ///< Storage for the path name. /// @}