Skip to content

Commit 6b863e8

Browse files
authored
[lldb-dap] Fix win32 build. (#135638)
This enum was not fully specified.
1 parent 9800c34 commit 6b863e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/tools/lldb-dap/Transport.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ ReadFull(IOObject &descriptor, size_t length,
3838
bool timeout_supported = true;
3939
// FIXME: SelectHelper does not work with NativeFile on Win32.
4040
#if _WIN32
41-
timeout_supported = descriptor.GetFdType() == eFDTypeSocket;
41+
timeout_supported = descriptor.GetFdType() == IOObject::eFDTypeSocket;
4242
#endif
4343

4444
if (timeout && timeout_supported) {

0 commit comments

Comments
 (0)