From 9197de39e4bf4c17ba6da82c2ed1b858603a443a Mon Sep 17 00:00:00 2001 From: rubidium42 Date: Wed, 26 May 2021 21:47:13 +0200 Subject: Cleanup: remove unused copy-constructor without copy-assignment --- src/misc/dbg_helpers.h | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src/misc') diff --git a/src/misc/dbg_helpers.h b/src/misc/dbg_helpers.h index f9d251b8a..53033110d 100644 --- a/src/misc/dbg_helpers.h +++ b/src/misc/dbg_helpers.h @@ -106,12 +106,6 @@ struct DumpTarget { , m_ptr(ptr) {} - KnownStructKey(const KnownStructKey &src) - { - m_type_id = src.m_type_id; - m_ptr = src.m_ptr; - } - bool operator<(const KnownStructKey &other) const { if ((size_t)m_ptr < (size_t)other.m_ptr) return true; -- cgit v1.2.3-54-g00ecf