[Lldb-commits] [lldb] r216021 - Fix FreeBSD build after r215992

Ed Maste emaste at freebsd.org
Tue Aug 19 14:00:37 PDT 2014


Author: emaste
Date: Tue Aug 19 16:00:37 2014
New Revision: 216021

URL: http://llvm.org/viewvc/llvm-project?rev=216021&view=rev
Log:
Fix FreeBSD build after r215992

Modified:
    lldb/trunk/include/lldb/Host/freebsd/HostInfoFreeBSD.h

Modified: lldb/trunk/include/lldb/Host/freebsd/HostInfoFreeBSD.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Host/freebsd/HostInfoFreeBSD.h?rev=216021&r1=216020&r2=216021&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Host/freebsd/HostInfoFreeBSD.h (original)
+++ lldb/trunk/include/lldb/Host/freebsd/HostInfoFreeBSD.h Tue Aug 19 16:00:37 2014
@@ -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);
 };
 }
 





More information about the lldb-commits mailing list