From: Zachary Turner Date: Tue, 3 Feb 2015 18:26:00 +0000 (+0000) Subject: Fix compilation failure on Windows. X-Git-Tag: llvmorg-3.7.0-rc1~13227 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=02624e415423421685076fa1da37d6fbadd859b0;p=platform%2Fupstream%2Fllvm.git Fix compilation failure on Windows. llvm-svn: 227998 --- diff --git a/lldb/source/Host/windows/HostInfoWindows.cpp b/lldb/source/Host/windows/HostInfoWindows.cpp index a2b5994..b22920d 100644 --- a/lldb/source/Host/windows/HostInfoWindows.cpp +++ b/lldb/source/Host/windows/HostInfoWindows.cpp @@ -91,7 +91,7 @@ HostInfoWindows::GetProgramFileSpec() char buffer[PATH_MAX]; ::GetModuleFileName(NULL, buffer, sizeof(buffer)); m_program_filespec.SetFile(buffer, false); - } + }); return m_program_filespec; }