From d26d6b68dd5ad6cea00331182d70432e4bac3393 Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Wed, 14 Sep 2011 23:21:47 +0000 Subject: Update the comment for system_temp_directory() to indicate when it will ignore the erasedOnReboot option, and properly escape the backslash in "C:\TEMP". Thanks to Aaron and Francois. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139755 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Support/PathV2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/Support/PathV2.cpp') diff --git a/lib/Support/PathV2.cpp b/lib/Support/PathV2.cpp index 4d969fe25f..b7dfe4f9a5 100644 --- a/lib/Support/PathV2.cpp +++ b/lib/Support/PathV2.cpp @@ -510,7 +510,7 @@ void system_temp_directory(bool erasedOnReboot, SmallVectorImpl &result) { const char *DefaultResult; #ifdef LLVM_ON_WIN32 (void)erasedOnReboot; - DefaultResult = "C:\TEMP"; + DefaultResult = "C:\\TEMP"; #else if (erasedOnReboot) DefaultResult = "/tmp"; -- cgit v1.2.3-18-g5258