diff options
author | Zachary Turner <zturner@google.com> | 2015-02-03 18:26:00 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-02-03 18:26:00 +0000 |
commit | 02624e415423421685076fa1da37d6fbadd859b0 (patch) | |
tree | c7a8aa6b8c2bb2da320d41aee1248c6a64d5ad65 /lldb/source/Host/windows/HostInfoWindows.cpp | |
parent | 4980df623f1532ccf3781afbcc3c916f2599c422 (diff) | |
download | bcm5719-llvm-02624e415423421685076fa1da37d6fbadd859b0.tar.gz bcm5719-llvm-02624e415423421685076fa1da37d6fbadd859b0.zip |
Fix compilation failure on Windows.
llvm-svn: 227998
Diffstat (limited to 'lldb/source/Host/windows/HostInfoWindows.cpp')
-rw-r--r-- | lldb/source/Host/windows/HostInfoWindows.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Host/windows/HostInfoWindows.cpp b/lldb/source/Host/windows/HostInfoWindows.cpp index a2b599461c7..b22920df226 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; } |