[Lldb-commits] [lldb] c349ded - [lldb] Add missing namespace

Adrian Prantl via lldb-commits lldb-commits at lists.llvm.org
Tue Aug 27 11:05:04 PDT 2024


Author: Adrian Prantl
Date: 2024-08-27T11:04:54-07:00
New Revision: c349ded7e61f3611ea54fa712e54b16c4c317a6b

URL: https://github.com/llvm/llvm-project/commit/c349ded7e61f3611ea54fa712e54b16c4c317a6b
DIFF: https://github.com/llvm/llvm-project/commit/c349ded7e61f3611ea54fa712e54b16c4c317a6b.diff

LOG: [lldb] Add missing namespace

Added: 
    

Modified: 
    lldb/source/Utility/SelectHelper.cpp

Removed: 
    


################################################################################
diff  --git a/lldb/source/Utility/SelectHelper.cpp b/lldb/source/Utility/SelectHelper.cpp
index 0b7c759bae94c4..34c1b62228fdc4 100644
--- a/lldb/source/Utility/SelectHelper.cpp
+++ b/lldb/source/Utility/SelectHelper.cpp
@@ -111,8 +111,8 @@ lldb_private::Status SelectHelper::Select() {
 #if !defined(__APPLE__) && !defined(_WIN32)
     lldbassert(fd < static_cast<int>(FD_SETSIZE));
     if (fd >= static_cast<int>(FD_SETSIZE)) {
-      error =
-          Status::FromErrorStringWithFormat("%i is too large for select()", fd);
+      error = lldb_private::Status::FromErrorStringWithFormat(
+          "%i is too large for select()", fd);
       return error;
     }
 #endif


        


More information about the lldb-commits mailing list