aboutsummaryrefslogtreecommitdiff
path: root/gdb/common/enum-flags.h
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/common/enum-flags.h')
-rw-r--r--gdb/common/enum-flags.h10
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)