[lldb-dap] Fix win32 build. (#135638)

This enum was not fully specified.
This commit is contained in:
John Harrison
2025-04-14 09:56:58 -07:00
committed by GitHub
parent 9800c3489a
commit 6b863e810d

View File

@@ -38,7 +38,7 @@ ReadFull(IOObject &descriptor, size_t length,
bool timeout_supported = true;
// FIXME: SelectHelper does not work with NativeFile on Win32.
#if _WIN32
timeout_supported = descriptor.GetFdType() == eFDTypeSocket;
timeout_supported = descriptor.GetFdType() == IOObject::eFDTypeSocket;
#endif
if (timeout && timeout_supported) {