forked from OSchip/llvm-project
[lldb] Fix warnings about unused variables when building without asserts. NFC.
This commit is contained in:
parent
945a1468c9
commit
e9e3a612ec
|
@ -30,6 +30,7 @@ MainLoopWindows::~MainLoopWindows() {
|
|||
assert(m_read_fds.empty());
|
||||
BOOL result = WSACloseEvent(m_trigger_event);
|
||||
assert(result == TRUE);
|
||||
(void)result;
|
||||
}
|
||||
|
||||
llvm::Expected<size_t> MainLoopWindows::Poll() {
|
||||
|
|
Loading…
Reference in New Issue