[llvm-commits] [llvm] r78679 - /llvm/trunk/include/llvm/System/Path.h
Benjamin Kramer
benny.kra at googlemail.com
Tue Aug 11 09:41:22 PDT 2009
Author: d0k
Date: Tue Aug 11 11:41:22 2009
New Revision: 78679
URL: http://llvm.org/viewvc/llvm-project?rev=78679&view=rev
Log:
Revert 78662 to fix broken windows build. Add a comment which explains the problem.
Modified:
llvm/trunk/include/llvm/System/Path.h
Modified: llvm/trunk/include/llvm/System/Path.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/System/Path.h?rev=78679&r1=78678&r2=78679&view=diff
==============================================================================
--- llvm/trunk/include/llvm/System/Path.h (original)
+++ llvm/trunk/include/llvm/System/Path.h Tue Aug 11 11:41:22 2009
@@ -587,7 +587,8 @@
/// @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.
/// @}
More information about the llvm-commits
mailing list