diff --git a/lldb/include/lldb/Host/linux/HostInfoLinux.h b/lldb/include/lldb/Host/linux/HostInfoLinux.h --- a/lldb/include/lldb/Host/linux/HostInfoLinux.h +++ b/lldb/include/lldb/Host/linux/HostInfoLinux.h @@ -21,11 +21,6 @@ class HostInfoLinux : public HostInfoPosix { friend class HostInfoBase; -private: - // Static class, unconstructable. - HostInfoLinux(); - ~HostInfoLinux(); - public: static void Initialize(SharedLibraryDirectoryHelper *helper = nullptr); static void Terminate(); diff --git a/lldb/include/lldb/Host/macosx/HostInfoMacOSX.h b/lldb/include/lldb/Host/macosx/HostInfoMacOSX.h --- a/lldb/include/lldb/Host/macosx/HostInfoMacOSX.h +++ b/lldb/include/lldb/Host/macosx/HostInfoMacOSX.h @@ -21,11 +21,6 @@ class HostInfoMacOSX : public HostInfoPosix { friend class HostInfoBase; -private: - // Static class, unconstructable. - HostInfoMacOSX() = delete; - ~HostInfoMacOSX() = delete; - public: static llvm::VersionTuple GetOSVersion(); static llvm::VersionTuple GetMacCatalystVersion(); diff --git a/lldb/include/lldb/Host/windows/HostInfoWindows.h b/lldb/include/lldb/Host/windows/HostInfoWindows.h --- a/lldb/include/lldb/Host/windows/HostInfoWindows.h +++ b/lldb/include/lldb/Host/windows/HostInfoWindows.h @@ -19,11 +19,6 @@ class HostInfoWindows : public HostInfoBase { friend class HostInfoBase; -private: - // Static class, unconstructable. - HostInfoWindows(); - ~HostInfoWindows(); - public: static void Initialize(SharedLibraryDirectoryHelper *helper = nullptr); static void Terminate();