summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Libby <rlibby@FreeBSD.org>2019-12-21 02:44:26 +0000
committerRyan Libby <rlibby@FreeBSD.org>2019-12-21 02:44:26 +0000
commit47ce20aef1e636e601ef26a4bc7e05c64a000640 (patch)
tree0c3dc3915483943baaa433626c9443d64ff327f1
parentfa19b250bdb7e463b58a8e7628ebea09a44197f3 (diff)
Notes
-rw-r--r--lib/libdevdctl/guid.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/libdevdctl/guid.h b/lib/libdevdctl/guid.h
index 02ea6f27dc04..7e80555a22f3 100644
--- a/lib/libdevdctl/guid.h
+++ b/lib/libdevdctl/guid.h
@@ -70,9 +70,6 @@ public:
Guid(const std::string &guid);
static Guid InvalidGuid();
- /* Assignment */
- Guid& operator=(const Guid& rhs);
-
/* Test the validity of this guid. */
bool IsValid() const;
@@ -110,13 +107,6 @@ Guid::InvalidGuid()
return (Guid(INVALID_GUID));
}
-inline Guid&
-Guid::operator=(const Guid &rhs)
-{
- m_GUID = rhs.m_GUID;
- return (*this);
-}
-
inline bool
Guid::IsValid() const
{