Fix FreeBSD build after r215992

llvm-svn: 216021
This commit is contained in:
Ed Maste 2014-08-19 21:00:37 +00:00
parent b5f3a844a7
commit 9163561d64
1 changed files with 3 additions and 3 deletions

View File

@ -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);
};
}