]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[3112] Remove the copy-constructors, favoring default ones
authorMukund Sivaraman <muks@isc.org>
Tue, 17 Sep 2013 05:16:13 +0000 (10:46 +0530)
committerMukund Sivaraman <muks@isc.org>
Tue, 17 Sep 2013 05:16:13 +0000 (10:46 +0530)
src/lib/dns/rrclass-placeholder.h
src/lib/dns/rrttl.h

index fe83b13df50b68b924e6d4f546079d9d32282bbe..b4f1851aa44cc8d8d352ad82dba66fefa91f5d88 100644 (file)
@@ -138,12 +138,6 @@ public:
     ///
     /// \param buffer A buffer storing the wire format data.
     explicit RRClass(isc::util::InputBuffer& buffer);
-    /// \brief Copy constructor.
-    ///
-    /// This constructor never throws an exception.
-    ///
-    /// \param other The RRClass to copy from.
-    RRClass(const RRClass& other) : classcode_(other.classcode_) {}
 
     /// A separate factory of RRClass from text.
     ///
index 996d6d9eac12e38937f17cdf588f35ee487bcfaa..35403b62948458763348476f7a043d80257b65df 100644 (file)
@@ -102,12 +102,6 @@ public:
     ///
     /// \param buffer A buffer storing the wire format data.
     explicit RRTTL(isc::util::InputBuffer& buffer);
-    /// \brief Copy constructor.
-    ///
-    /// This constructor never throws an exception.
-    ///
-    /// \param other The RRTTL to copy from.
-    RRTTL(const RRTTL& other) : ttlval_(other.ttlval_) {}
 
     /// A separate factory of RRTTL from text.
     ///