summaryrefslogtreecommitdiff
path: root/src/misc
diff options
context:
space:
mode:
Diffstat (limited to 'src/misc')
-rw-r--r--src/misc/dbg_helpers.h6
1 files changed, 0 insertions, 6 deletions
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;