diff --git a/include/dns_record.h b/include/dns_record.h index 594315d..79bf17e 100644 --- a/include/dns_record.h +++ b/include/dns_record.h @@ -104,12 +104,12 @@ public: /** * Move constructor. */ - DNSResourceRecord(DNSResourceRecord &&rhs); + DNSResourceRecord(DNSResourceRecord &&rhs) noexcept; /** * Move assignment operator. */ - DNSResourceRecord& operator=(DNSResourceRecord &&rhs); + DNSResourceRecord& operator=(DNSResourceRecord &&rhs) noexcept; #endif // TINS_IS_CXX11 /** diff --git a/include/icmpv6.h b/include/icmpv6.h index 133a6fe..f171329 100644 --- a/include/icmpv6.h +++ b/include/icmpv6.h @@ -1179,6 +1179,7 @@ private: void parse_options(const uint8_t *&buffer, uint32_t &total_sz); void add_addr_list(uint8_t type, const addr_list_type &value); addr_list_type search_addr_list(Options type) const; + template