diff options
Diffstat (limited to 'gdb/common')
-rw-r--r-- | gdb/common/enum-flags.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/gdb/common/enum-flags.h b/gdb/common/enum-flags.h index e63c8a4..ddfcddf 100644 --- a/gdb/common/enum-flags.h +++ b/gdb/common/enum-flags.h @@ -120,16 +120,6 @@ public: : m_enum_value ((enum_type) 0) {} - enum_flags (const enum_flags &other) - : m_enum_value (other.m_enum_value) - {} - - enum_flags &operator= (const enum_flags &other) - { - m_enum_value = other.m_enum_value; - return *this; - } - /* If you get an error saying these two overloads are ambiguous, then you tried to mix values of different enum types. */ enum_flags (enum_type e) |