diff options
Diffstat (limited to 'lldb')
-rw-r--r-- | lldb/include/lldb/Host/HostInfoBase.h | 2 | ||||
-rw-r--r-- | lldb/include/lldb/Host/posix/HostInfoPosix.h | 2 | ||||
-rw-r--r-- | lldb/source/Host/posix/HostInfoPosix.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lldb/include/lldb/Host/HostInfoBase.h b/lldb/include/lldb/Host/HostInfoBase.h index f2370f1d00a..f322012906b 100644 --- a/lldb/include/lldb/Host/HostInfoBase.h +++ b/lldb/include/lldb/Host/HostInfoBase.h @@ -99,8 +99,6 @@ public: //--------------------------------------------------------------------------- static ArchSpec GetAugmentedArchSpec(llvm::StringRef triple); - static UserIDResolver &GetUserIDResolver(); - protected: static bool ComputeSharedLibraryDirectory(FileSpec &file_spec); static bool ComputeSupportExeDirectory(FileSpec &file_spec); diff --git a/lldb/include/lldb/Host/posix/HostInfoPosix.h b/lldb/include/lldb/Host/posix/HostInfoPosix.h index 45e86e22b10..a3fbe49560c 100644 --- a/lldb/include/lldb/Host/posix/HostInfoPosix.h +++ b/lldb/include/lldb/Host/posix/HostInfoPosix.h @@ -35,6 +35,8 @@ public: static bool ComputePathRelativeToLibrary(FileSpec &file_spec, llvm::StringRef dir); + static UserIDResolver &GetUserIDResolver(); + protected: static bool ComputeSupportExeDirectory(FileSpec &file_spec); static bool ComputeHeaderDirectory(FileSpec &file_spec); diff --git a/lldb/source/Host/posix/HostInfoPosix.cpp b/lldb/source/Host/posix/HostInfoPosix.cpp index 45c8151c96e..6e4208dd0ca 100644 --- a/lldb/source/Host/posix/HostInfoPosix.cpp +++ b/lldb/source/Host/posix/HostInfoPosix.cpp @@ -106,7 +106,7 @@ llvm::Optional<std::string> PosixUserIDResolver::DoGetGroupName(id_t gid) { static llvm::ManagedStatic<PosixUserIDResolver> g_user_id_resolver; -UserIDResolver &HostInfoBase::GetUserIDResolver() { +UserIDResolver &HostInfoPosix::GetUserIDResolver() { return *g_user_id_resolver; } |