From: Michael J. Spencer Date: Wed, 10 Nov 2010 15:06:00 +0000 (+0000) Subject: Fix Whitespace. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=6c43de46ffc6d699f2421706e2d4d8d793d596fa;p=oota-llvm.git Fix Whitespace. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@118683 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/System/Win32/Path.inc b/lib/System/Win32/Path.inc index 66e50acaea3..8990a420a02 100644 --- a/lib/System/Win32/Path.inc +++ b/lib/System/Win32/Path.inc @@ -288,7 +288,7 @@ Path::GetBitcodeLibraryPaths(std::vector& Paths) { Path Path::GetLLVMDefaultConfigDir() { Path ret = GetUserHomeDirectory(); - if(!ret.appendComponent(".llvm")) + if (!ret.appendComponent(".llvm")) assert(0 && "Failed to append .llvm"); return ret; } @@ -296,11 +296,11 @@ Path::GetLLVMDefaultConfigDir() { Path Path::GetUserHomeDirectory() { char buff[MAX_PATH]; - HRESULT res = SHGetFolderPathA(NULL, - CSIDL_FLAG_CREATE | CSIDL_APPDATA, - NULL, - SHGFP_TYPE_CURRENT, - buff); + HRESULT res = SHGetFolderPathA(NULL, + CSIDL_FLAG_CREATE | CSIDL_APPDATA, + NULL, + SHGFP_TYPE_CURRENT, + buff); if (res != S_OK) assert(0 && "Failed to get user home directory"); return Path(buff);