[lldb] Fix warnings about unused variables when building without asserts. NFC.

This commit is contained in:
Martin Storsjö 2022-10-01 14:27:48 +03:00
parent 945a1468c9
commit e9e3a612ec
1 changed files with 1 additions and 0 deletions

View File

@ -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() {