diff --git a/lldb/include/lldb/Host/freebsd/HostInfoFreeBSD.h b/lldb/include/lldb/Host/freebsd/HostInfoFreeBSD.h index 6d3f2d28a020..79247c5f2213 100644 --- a/lldb/include/lldb/Host/freebsd/HostInfoFreeBSD.h +++ b/lldb/include/lldb/Host/freebsd/HostInfoFreeBSD.h @@ -18,9 +18,9 @@ namespace lldb_private class HostInfoFreeBSD : public HostInfoPosix { public: - bool GetOSVersion(uint32_t &major, uint32_t &minor, uint32_t &update); - bool GetOSBuildString(std::string &s); - bool GetOSKernelDescription(std::string &s); + static bool GetOSVersion(uint32_t &major, uint32_t &minor, uint32_t &update); + static bool GetOSBuildString(std::string &s); + static bool GetOSKernelDescription(std::string &s); }; }