Skip to content

Commit e9e3a61

Browse files
committed
[lldb] Fix warnings about unused variables when building without asserts. NFC.
1 parent 945a146 commit e9e3a61

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lldb/source/Host/windows/MainLoopWindows.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ MainLoopWindows::~MainLoopWindows() {
3030
assert(m_read_fds.empty());
3131
BOOL result = WSACloseEvent(m_trigger_event);
3232
assert(result == TRUE);
33+
(void)result;
3334
}
3435

3536
llvm::Expected<size_t> MainLoopWindows::Poll() {

0 commit comments

Comments
 (0)