Skip to content

Commit c349ded

Browse files
committed
[lldb] Add missing namespace
1 parent d1d8edf commit c349ded

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/source/Utility/SelectHelper.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ lldb_private::Status SelectHelper::Select() {
111111
#if !defined(__APPLE__) && !defined(_WIN32)
112112
lldbassert(fd < static_cast<int>(FD_SETSIZE));
113113
if (fd >= static_cast<int>(FD_SETSIZE)) {
114-
error =
115-
Status::FromErrorStringWithFormat("%i is too large for select()", fd);
114+
error = lldb_private::Status::FromErrorStringWithFormat(
115+
"%i is too large for select()", fd);
116116
return error;
117117
}
118118
#endif

0 commit comments

Comments
 (0)