Date: Thu, 26 Oct 2017 17:56:34 +0000 (UTC) From: Alan Somers <asomers@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r325016 - head/lib/libdevdctl Message-ID: <201710261756.v9QHuYm6080449@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: asomers Date: Thu Oct 26 17:56:34 2017 New Revision: 325016 URL: https://svnweb.freebsd.org/changeset/base/325016 Log: Partially revert r325011: restore Guid's default constructor Reported by: ohartmann MFC after: 3 weeks X-MFC-With: 325011 Sponsored by: Spectra Logic Corp Modified: head/lib/libdevdctl/guid.h Modified: head/lib/libdevdctl/guid.h ============================================================================== --- head/lib/libdevdctl/guid.h Thu Oct 26 17:45:01 2017 (r325015) +++ head/lib/libdevdctl/guid.h Thu Oct 26 17:56:34 2017 (r325016) @@ -62,7 +62,11 @@ class Guid { public: /* Constructors */ + /* Default constructor: an Invalid guid */ + Guid(); + /* Construct a guid from a provided integer */ Guid(uint64_t guid); + /* Construct a guid from a string in base 8, 10, or 16 */ Guid(const std::string &guid); static Guid InvalidGuid(); @@ -88,6 +92,12 @@ class Guid }; //- Guid Inline Public Methods ------------------------------------------------ +inline +Guid::Guid() + : m_GUID(INVALID_GUID) +{ +} + inline Guid::Guid(uint64_t guid) : m_GUID(guid)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201710261756.v9QHuYm6080449>